@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap");



@font-face {

  font-family: "Century Gothic";

  src: url("../../fonts/CenturyGothic-bold.TTF");

}



/*



0 - 600px:       Mobile Phone

601 - 767px:     Tablet Small

768px - 1023px:  Tablet

1024px - 1200px: Notebook



[1200 - 1800] is where our normal styles apply



1800px + :      Big desktop



$breakpoint arguement choices:

- mobile

- tablet-small

- tablet

- notebook

- big-desktop



*/

*,

*:before,

*:after {

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

  margin: 0;

  padding: 0;

}



* {

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}



body.active {

  overflow-y: hidden;

}



:focus-visible {

  outline: none;

}







a {

  text-decoration: none;

}



img,

iframe {

  max-width: 100%;

  display: block;

}



.table-responsive {

  overflow-y: hidden;

  -ms-overflow-style: -ms-autohiding-scrollbar;

  overflow-x: auto;

}



html.prevent-scroll,

html.prevent-scroll body {

  height: 100%;

  overflow: hidden;

}





@-webkit-keyframes arrowAnimation {

  0% {

    -webkit-transform: translateX(0%);

    transform: translateX(0%);

  }



  50% {

    -webkit-transform: translateX(calc(50% + 10px));

    transform: translateX(calc(50% + 10px));

  }



  51% {

    -webkit-transform: translateX(calc(-50% - 10px));

    transform: translateX(calc(-50% - 10px));

  }



  100% {

    -webkit-transform: translateX(0%);

    transform: translateX(0%);

  }

}



@keyframes arrowAnimation {

  0% {

    -webkit-transform: translateX(0%);

    transform: translateX(0%);

  }



  50% {

    -webkit-transform: translateX(calc(50% + 10px));

    transform: translateX(calc(50% + 10px));

  }



  51% {

    -webkit-transform: translateX(calc(-50% - 10px));

    transform: translateX(calc(-50% - 10px));

  }



  100% {

    -webkit-transform: translateX(0%);

    transform: translateX(0%);

  }

}



.home-section {

  background: url('../images/home-bg.png');

  background-size: 100% 100%;

  background-repeat: no-repeat;

  background-position: center;

}



.home {

  padding: 25px 0px;

}



.navbar>.container,

.navbar>.container-fluid,

.navbar>.container-lg,

.navbar>.container-md,

.navbar>.container-sm,

.navbar>.container-xl,

.navbar>.container-xxl {

  display: block;

  flex-wrap: inherit;

  align-items: center;

  justify-content: space-between;

}



header {

  padding-bottom: 0px;

  padding-top: 5px;

  border-bottom: 1.5px solid #6a6a6a;

}



header .container .page-header {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  position: relative;

}



.top-bar {

  position: absolute;

  right: 5px;

  top: 0px;

  display: flex;

  -webkit-box-align: center;

  align-items: center;

  width: 100%;

  justify-content: end;

}



.top-bar.large_screen {



  top: 15px;



}



.top-bar .email-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: baseline;

  -ms-flex-align: baseline;



  padding-right: 20px;

  align-items: center;

}



.top-bar .email-area .email-icon {

  padding-right: 8px;

}



.top-bar .email-area a {

  font-size: 14px;

  font-family: 'Roboto', sans-serif;

  font-style: normal;

  font-weight: 500;

  color: #323232;

}



.top-bar .email-area a:hover,

.top-bar .phone-area a:hover {

  color: #3a7dda;

}



.top-bar .phone-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  padding-right: 10px;

}



.top-bar .phone-area .phone-icon {

  padding-right: 8px;

}



.top-bar .phone-area a {

  font-size: 14px;

  font-family: 'Roboto', sans-serif;

  font-style: normal;

  font-weight: 500;

  color: #323232;

}



.small_screen {

  display: none;

}



header .container .page-header .logo {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



header .container .page-header .logo a {

  padding-right: 5px;

}



header .container .page-header .logo a img {

  width: auto;

}



.navbar-light .navbar-nav .menu-item a {

  font-size: 17px;

  line-height: 34px;

  color: #212121;

  font-weight: 500;

  font-family: "Roboto";

  position: relative;

}



.menu-item a {

  display: block;

  padding: 0.5rem 1rem;

  color: #0d6efd;

  text-decoration: none;

  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;

}



.navbar-light .navbar-nav .product-toggle:hover~.products {

  transition: 0.5s transform ease;



  display: block;

}



.navbar-light .navbar-nav .nav-link::before {

  content: "";

  width: 100%;

  height: 4px;

  position: absolute;

  left: 0;

  bottom: 0;

  background: #fff;

  transition: 0.5s transform ease;

  transform: scale3d(0, 1, 1);

  transform-origin: 0 50%;

}



.navbar-light .navbar-nav .nav-link:hover::before {

  transform: scale3d(1, 1, 1);

}



.navbar-light .navbar-nav .nav-link::before {

  transform-origin: 50% 50%;

  background: #3a7dda;

}



.navbar-light .navbar-nav .dropdown-item {

  font-size: 17px;

  line-height: 34px;

  color: #212121;

  font-weight: 500;

  font-family: "Roboto";

}



.navbar-light .navbar-nav .dropdown-item:hover {

  background-color: #3a7dda;

  color: #fff;

}



.navbar-light .navbar-nav .nav-link:hover {

  color: #3a7dda;

}



.navbar-light .navbar-nav .nav-link.active {

  color: #3a7dda;

}



.navbar-light .navbar-nav .nav-link.search_padding {

  padding-right: 0px;

}



header .container .page-header .logo .toggle {

  display: none;

}







header .container .page-header .logo .toggle .menu-icon {

  position: relative;

  width: 24px;

  height: 12px;

  cursor: pointer;

  background: transparent;

  border: 0;

  margin-right: 10px;

  display: none;

}







header .container .page-header .logo .toggle .menu-icon button {

  border: none;

  background: transparent;

}



header .container .page-header .logo .toggle .menu-icon button span {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 2px;

  -webkit-transition: all 0.2s, background 0s;

  transition: all 0.2s, background 0s;

}



header .container .page-header .logo .toggle .menu-icon button span:nth-child(2) {

  top: 6px;

  width: 16px;

}



header .container .page-header .logo .toggle .menu-icon button span:last-child {

  top: 12px;

}



header .container .page-header .logo .toggle .menu-icon.active span:first-child,

header .container .page-header .logo .toggle .menu-icon.active span:last-child {

  top: 8px;

}



header .container .page-header .logo .toggle .menu-icon.active span:first-child {

  -webkit-transform: rotate(45deg);

  transform: rotate(45deg);

  width: 24px;

  left: 0;

  top: 5px;

}



header .container .page-header .logo .toggle .menu-icon.active span:last-child {

  -webkit-transform: rotate(-45deg);

  transform: rotate(-45deg);

  width: 24px;

  left: 0;

  top: 5px;

}



header .container .page-header .logo .toggle .menu-icon.active span:nth-child(2) {

  opacity: 0;

  visibility: hidden;

}







header .container .page-header nav>ul {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  padding-left: 0px;

  margin-bottom: 0px;

}







header .container .page-header nav>ul li:not(:last-child) {

  padding: 10px 5px;

}









header .container .page-header nav>ul li:last-child i {

  color: #c4c4c4;

  font-size: 20px;

}







header .container .page-header nav>ul li a {

  padding: 10px;

  font-size: 17px;

  line-height: 34px;

  color: #212121;

  font-weight: 500;

  font-family: "Roboto";

}



header .container .page-header nav>ul li a:hover {

  color: #6cf6fe;

  border-bottom: 3px solid #6cf6fe;

}







header .container .page-header nav>ul li a .fa-user {

  padding: 14px 15px;

  background-color: #6cf6fe;

  border-radius: 50%;

  font-weight: 700;

  font-size: 20px;

  color: #000;

}



header .container .page-header nav>ul li .user-icon:hover {

  color: white;

  border: none;

}



.carousel-indicators [data-bs-target] {

  box-sizing: content-box;

  flex: 0 1 auto;

  width: 16px;

  height: 16px;

  border-radius: 8px;

  background-color: #f7f4ee;

  border: 0px solid #000000;

  border-radius: 50%;

  padding: 0;

  margin-right: 3px;

  margin-left: 3px;

  text-indent: -999px;

  cursor: pointer;

  background-color: #f7f4ee;

  background-clip: padding-box;

  border: 0;

  transition: opacity .6s ease;

}



.carousel-dark .carousel-indicators [data-bs-target] {

  background-color: #f7f4ee;

}



.carousel-dark .carousel-indicators [data-bs-target].active {

  background-color: #ffff;

}



.carousel-indicators {

  position: absolute;

  right: 0px;

  bottom: -25px;

  left: 0px;

  z-index: 2;

  display: flex;

  justify-content: center;

  padding: 0px;

  margin-right: 15%;

  margin-bottom: 1rem;

  margin-left: 15%;

  list-style: none;

}



footer {

  background-color: #1d1f20;

  color: #fff;

}



footer .footer_logo {

  margin-bottom: 30px;

  padding-top: 15px;

}



.col_felx {

  display: flex;

  flex-direction: column;

  align-items: center;

}



.contact_section a {

  color: #fff;

}



.contact_section a:hover {

  color: #ffa200;

}



footer .col_felx h4 {

  padding-right: 55px;

  padding-top: 10px;

}



footer .bx-right-arrow-alt:before {

  content: "\ebe6";

  font-size: 30px;

  color: #ffa200;

}



footer ul {

  padding: 0px;

}



footer ul li {

  display: flex;

  align-items: center;

}



footer .menu-footer-menu-container .menu li a {

  font-size: 16px;

  line-height: normal;

  color: #ffffff !important;

  font-weight: 400;

  font-family: "Roboto";

  margin-left: 10px;

  padding-top: 0px;

  padding-bottom: 0px;

}



footer .menu-footer-menu-container .menu li a:hover {

  color: #ffa200 !important;

}



footer h4 {

  margin-bottom: 15px;

  padding-top: 10px;

}



footer .contact_section .flex_item {

  display: flex;

  align-items: center;

  margin-bottom: 10px;

  ;

}



footer .contact_section .flex_item p {

  margin-bottom: 0px;

  margin-left: 20px;

}



footer .page-footer .container .footer-info {

  padding-top: 50px;

  padding-bottom: 50px;

}







footer .page-footer .container .footer-info .contact-info {

  width: 600px;

  margin: auto;

}





footer .page-footer .container .footer-info .contact-info .contact-bar {

  width: 600px;

  height: 110px;

  margin: auto;

  border-radius: 8px;

  background-color: #6cf6fe;

}







footer .page-footer .container .footer-info .contact-info .contact-bar .contact-bar-img {

  width: 50%;

  position: relative;

}



footer .page-footer .container .footer-info .contact-info .contact-bar .contact-bar-img img {

  width: 100%;

  height: 110px;

  -o-object-fit: cover;

  object-fit: cover;

  border-top-left-radius: 6px;

  border-bottom-left-radius: 6px;

}











footer .page-footer .container .footer-info .contact-info .contact-bar .contact-bar-img .footer-icon {

  position: absolute;

  width: 50px;

  height: 50px;

  background-color: #fff;

  border-radius: 50%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  right: -51px;

  top: 50%;

  -webkit-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

}



footer .page-footer .container .footer-info .contact-info .contact-bar .contact-bar-img .footer-icon i {

  color: #000000;

  font-size: 20px;

  background-color: aliceblue;

  padding: 10px;

  border-radius: 50%;

}



footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils {

  padding-left: 50px;

}







footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils .top-heading {

  font-size: 14px;

  font-family: 'Roboto', sans-serif;

  font-style: normal;

  font-weight: 400;

}







footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils span {

  font-size: 19px;

  font-family: "Century Gothic";

  font-style: normal;

  font-weight: bold;

}









footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils .contact-mail {

  font-size: 14px;

  font-family: "Century Gothic";

  font-style: normal;

  font-weight: 400;

}



footer .page-footer .container .footer-info .contact-info .footer-logo {

  padding-top: 50px;

  padding-bottom: 50px;

}







footer .page-footer .container .footer-info .contact-info .footer-description p {

  font-size: 14px;

  font-family: 'Roboto', sans-serif;

  font-style: normal;

  font-weight: 500;

  color: #909090;

  text-align: center;

}



footer .page-footer .container .footer-info .contact-info .footer-description .address {

  font-size: 17px;

  font-family: "Century Gothic";

  font-style: normal;

  font-weight: bold;

  color: #6cf6fe;

  text-align: center;

  text-transform: uppercase;

  padding-bottom: 10px;

}



footer .page-footer .footer-bottom {

  color: #fff;

  padding-top: 10px;

  padding-bottom: 10px;

  border-top: 1.5px solid #5D5D5D;

}



footer .page-footer .footer-bottom p {

  font-size: 12px;

  font-family: 'Roboto', sans-serif;

  font-style: normal;

  font-weight: 400;

  margin-bottom: 0;

  padding-bottom: 10px;

  padding-top: 10px;



}



footer .page-footer .footer-bottom p span {

  color: #6cf6fe;

}



footer .page-footer .footer-bottom p a {

  color: #fff;

}



.home-section .home .container .home-details {

  overflow: hidden;

}







.home-section .home .container .home-details .home-info {

  position: relative;

  height: 200px;

}



.home-section .home .container .home-details .home-info .item-1 {

  position: absolute;

  display: block;

  top: 55%;

  -webkit-transform: translate(0%, -50%);

  transform: translate(0%, -50%);

  width: 100%;

  color: white;

  font-size: 2em;

}



.home-section .home .container .home-details .home-info .item-1 .home-title h1 {

  font-family: 'Titillium Web', sans-serif;

  font-style: normal;

  font-weight: 700;

  font-size: 36px;

  color: #ffffff;

}







.home-section .home .container .home-details .home-info .item-1 .home-title h1 span {

  color: #6cf6fe;

}



.home-section .home .container .home-details .home-info .item-1 .home-title .title-sub {

  font-family: 'Roboto', sans-serif;

  font-weight: 300;

  font-size: 25px;

  color: #ffffff;

}







.home-section .home .container .home-details .home-info .item-1 .home-btn a {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

  width: 434px;

  height: 64px;

  border-radius: 5px;

  background-color: #ffa100;

  border: 0px solid #000000;

  font-size: 24px;

  color: #ffffff;

  font-weight: 300;

  font-family: "Roboto";

  text-align: center;

}







.home-section .home .container .home-details .home-info .item-1 .home-btn a:hover {

  background-color: #3a7dda;

  -webkit-transition: .5s;

  transition: .5s;

}



.home-section .home .container .home-details .home-img img {

  margin-left: auto;

  height: 175px;

}





/* search box styling  */



.overlay {

  height: 100%;

  width: 100%;

  display: none;

  position: fixed;

  z-index: 9999;

  top: 0;

  left: 0;

  background-color: rgb(0, 0, 0);

  background-color: rgba(0, 0, 0, 0.9);

}



.overlay .closebtn {

  position: absolute;

  top: 20px;

  right: 45px;

  font-size: 60px;

  cursor: pointer;

  color: white;

}



.overlay-content {

  position: relative;

  top: 46%;

  width: 80%;

  text-align: center;

  margin-top: 30px;

  margin: auto;

}



.overlay input[type="text"] {

  padding: 15px;

  font-size: 17px;

  border: none;

  float: left;

  width: 80%;

  background: white;

}



.overlay button {

  float: left;

  width: 20%;

  padding: 15px;

  background: #ddd;

  font-size: 17px;

  border: none;

  cursor: pointer;

}



.search_btn_slide {

  background-color: #3a7dda !important;

  background-color: #ffa100 !important;

  border-top-right-radius: 10px;

  border-bottom-right-radius: 10px;

}



.search_btn_slide:hover {

  background-color: #3a7dda !important;

}



.search_btn_slide i {

  color: #fff;

}







/* secrvice section styling  */

.services {

  padding: 30px 0px;

  padding-bottom: 20px;

}



.services .col_card {



  margin-bottom: 20px;

}



.services .content {

  border-radius: 5px;

  filter: drop-shadow(0 0 10.5px rgba(160, 160, 160, 0.46));

  background-color: #f3f3f3;

  border: 0px solid #000000;

  text-align: center;

  padding: 10px;

  border: 1px solid #2D2727;
  
  height: 100%;

}



.services .content h3 {

  font-size: 20px;

  color: #222222;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

  padding: 27px 10px;

}



.services .content_3 h3 {



  padding: 15px 10px;

}



.services .content img {

  margin: auto;

  padding-top: 0px;



}



/* secrvice section styling  */









.main-page .services-section .container .services-title h2 {

  font-family: 'Titillium Web', sans-serif;

  font-style: normal;

  font-weight: 700;

  font-size: 45px;

  text-transform: capitalize;

  color: #062540;

  text-align: center;

  margin-bottom: 35px;

}



.main-page .services-section .container .services-title h2 span {

  font-weight: bold;

  color: #6cf6fe;

}







.main-page .services-section .container .services-card .services-card-list {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  margin-left: -20px;

  margin-top: -20px;

  padding-top: 0px;

  overflow: hidden;

}















.main-page .services-section .container .services-card .services-card-list .list-items .card-info {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

  background-color: #ffffff;

  padding: 10px;

  width: 100%;

  z-index: 0;

  -webkit-box-shadow: 0px 0px 20px 3px whitesmoke;

  box-shadow: 0px 0px 20px 3px whitesmoke;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-info .card-icon {

  padding-bottom: 0px;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-info .card-description .card-title {

  padding: 5px 10px 15px 10px;

  margin-bottom: 0px;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-info .card-description .card-title h3 {

  text-align: center;

  font-size: 24px;

  font-family: 'Titillium Web', sans-serif;

  font-style: normal;

  font-weight: 700;

  color: #222222;

  margin-bottom: 0px;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-info .card-icon {

  width: 100%;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-info .card-icon img {

  width: 100%;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 {

  position: relative;

  overflow: hidden;

  width: 100%;

  height: 100%;

  border-radius: 5px;

  background-color: #f3f3f3;

  border: 0px solid #000000;

  height: 155px;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .card-data {

  position: absolute;

  background-color: rgba(12, 3, 3, 0.8);

  width: 100%;

  height: 100%;

  top: 0;

  left: -100%;

  z-index: -1;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .card-data p {

  text-align: center;

  color: white;

  font-weight: 500;

  padding: 10px;

}



.main-page .services-section .container .services-card .services-card-list {

  padding-left: 3rem;

  padding-right: 3rem;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .card-data2 {

  position: absolute;

  background-color: rgba(12, 3, 3, 0.8);

  width: 100%;

  height: 100%;

  bottom: 100%;

  left: 0;

  z-index: -1;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .card-data2 p {

  text-align: center;

  color: white;

  font-weight: 500;

  padding: 10px;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .dt3 {

  top: 100% !important;

  left: 0 !important;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .card-data4 {

  position: absolute;

  background-color: rgba(12, 3, 3, 0.8);

  width: 100%;

  height: 100%;

  right: -100%;

  top: 0;

  z-index: -1;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;

  -webkit-box-pack: center;

  -ms-flex-pack: center;

  justify-content: center;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1 .card-data4 p {

  text-align: center;

  color: white;

  font-weight: 500;

  padding: 10px;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1:hover {

  z-index: 0;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1:hover .card-data {

  -webkit-transition: 1s;

  transition: 1s;

  left: 0%;

  z-index: 1;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1:hover .card-data2 {

  -webkit-transition: 1s;

  transition: 1s;

  bottom: 0%;

  z-index: 1;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1:hover .dt3 {

  top: 0% !important;

}



.main-page .services-section .container .services-card .services-card-list .list-items .card-1:hover .card-data4 {

  -webkit-transition: 1s;

  transition: 1s;

  right: 0%;

  z-index: 1;

}



.main-page .service2 {

  background-color: #f3efea;

  padding: 30px 0px;

}
.footer-service .service2 {

  background-color: #f3efea;

  padding: 30px 0px;

}



.main-page .service2 .services-title {

  padding-bottom: 30px;

}



.main-page .service2 .services-title h2 {

  font-size: 36px !important;

}



.main-page .service2 .services-card .services-card-list .list-items {

  width: calc(100% / 1) !important;

  padding: 0px 10px;

}



.main-page .service2 .services-card .services-card-list .list-items .card-info {

  padding: 10px 20px !important;

  background-color: #fefdfd !important;

}



.main-page .service2 .services-card .services-card-list .list-items .card-info .card-icon img {

  width: -webkit-fit-content !important;

  width: -moz-fit-content !important;

  width: fit-content !important;

  margin: auto;

  height: 100%;

}



.home-bottom {

  background-color: #3a7dda;

}



.home-bottom h3 {

  font-size: 36px;

  color: #ffffff;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

}



.home-bottom p {

  font-size: 18px;

  line-height: 34px;

  color: #ffffff;

  font-weight: 400;

  font-family: "Roboto";

  text-align: center;

}



.home-bottom .btn_bottom {



  border-radius: 5px;

  background-color: #ffa200;

  border: 0px solid #000000;

  text-decoration: none;

  color: #fff;

  font-size: 18px;

  color: #ffffff;

  font-weight: 300;

  font-family: "Roboto";

  text-align: center;

  padding: 30px;

  margin-bottom: 30px;

}



.home-bottom .btn_bottom:hover {

  background-color: #3a7dda;



}



.home-btn {

  margin-bottom: 40px;

}



.home-bottom .content {

  padding: 40px 0px;

}



.home-bottom .content p {

  margin-bottom: 40px;

}



.bg_img {

  background-image: url(../images/btm-bg.png);

  background-position: center;

  background-size: 100% 100%;

  background-repeat: no-repeat;

  padding-top: 40px;

  padding-bottom: 40px;

}





.inner_img {

  display: flex;

  justify-content: center;

  align-items: center;

  height: 100%;

  flex-direction: column;

}



.inner_img img {

  margin-bottom: 30px;



}



.slick-slider .slick-disabled {

  opacity: 0;

  pointer-events: none;

}







/* BreadCrumb style start */

.breadcrumb {

  background-color: #3a7dda;

  text-align: center;

  padding: 30px 0px;

  margin-bottom: 0px !important;



}



.breadcrumb h2 {

  font-size: 36px;

  color: #ffffff;

  font-weight: 700;

  font-family: "Titillium Web";

}



/* BreadCrumb style end */





/* about us page style  start */



.about p {

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

  text-align: justify;

  padding-right: 30px;

}



.who,

.set {

  padding: 40px 0px;

  background-color: #f8f8f8;

}



#post-24 .wp-container-3 {

  padding: 40px 35px;

  background-color: #f8f8f8;

}



#post-24 .wp-container-6 {

  padding: 40px 35px;

}



#post-24 .wp-container-3 img {

  width: 100%;

}



#post-24 .wp-container-3 h2,

.set h3 {

  font-size: 36px;

  line-height: 24px;

  color: #383838;

  font-weight: 700;

  margin-bottom: 30px;

  margin-top: 20px;

  font-family: "Titillium Web";

}



#post-24 .wp-container-3 p,

.who_2 p,

.set p {

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



.who_2 {

  padding: 40px 0px;

}



.who_2 h3 {

  font-size: 36px;

  line-height: 24px;

  color: #383838;

  font-weight: 700;

  margin-bottom: 30px;

  font-family: "Titillium Web";

}



.who_2 .content ul {

  padding-left: 20px;

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



/* about us page style  end*/





/* thermal section  start  */

img.arrow_icon {

  height: 20px;

}



.thermal_section {

  padding: 30px 0px;

  background-color: #f3f3f6;

}



.thermal_section .thermal_top_row {

  margin-bottom: 20px;

}



.thermal_section .content {

  padding-right: 20px;

}



.thermal_section .box_img {

  border-radius: 20px;

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.23));

  background-color: #ffffff;

  border: 0px solid #000000;

}



.thermal_section h3 {

  font-size: 24px;

  color: #383838;

  font-weight: 700;

  font-family: "Roboto";

  margin: 20px 0px;

}



.thermal_section p {

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



.thermal_section ul {

  padding-left: 0px;

  flex-wrap: wrap;

  align-items: start !important;

}



.thermal_section .ul_company a {

  text-decoration: none;

  margin-right: 10px;

  margin-left: 10px;

  font-size: 16px;

  line-height: 48px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



.li-company {

  list-style: none;

  width: calc(100%/2);

}



.company-box-li {

  display: flex;

  align-items: center;

}



.standard {

  padding: 30px 0px;

}



.standard h2 {

  font-size: 36px;

  color: #062540;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

  padding-bottom: 20px;





}



.standard ul {

  padding-left: 0px;

  margin-top: 50px;

}



.standard ul li img {

  padding-right: 10px;

  margin-top: 4px;

}



.standard p {

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



.navbar-light .navbar-nav .dropdown-item.active {



  color: #fff;

}



/* thermal section  end  */



/* custom label page styling  */

.card_section {

  padding: 30px 0px;

  background-color: #f8f8f8;



}



.card_section .card_content .header {

  background-color: #ffa80f;

  text-align: center;

  padding: 20px 0px;

  border-top-right-radius: 20px;

  border-top-left-radius: 20px;

}



.card_section .card_content .header h5 {

  font-size: 24px;

  color: #222222;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

  margin-bottom: 0px;

}



.card_section .card_content ul {

  list-style: none;

  padding-left: 15px;

  margin-top: 30px;

  padding-bottom: 30px;

}



.card_section .card_content ul li {

  display: flex;

  align-items: center;

}



.card_section .card_content ul li a {

  font-size: 18px;

  line-height: 39px;

  color: #222222;

  font-weight: 600;

  font-family: "Titillium Web";

}



.card_section .card_content ul li img {

  margin-right: 20px;

}



.card_section .card_content .card_body {

  border-bottom-left-radius: 24px;

  border-bottom-right-radius: 24px;

  filter: drop-shadow(0px 5px 2.5px rgba(0, 0, 0, 0.14));

  background-color: #ffffff;

  border: 1px solid #e0e0e0;

}



.card_content.ml-auto {

  margin-left: auto;

}



.custom_banner {

  padding: 40px 0px;

  background-color: #3a7dda;

}



.custom_banner .content ul {

  list-style: none;

  padding-left: 0px;

}



.custom_banner .content ul li {



  display: flex;

  align-items: center;

}



.custom_banner .content ul li a {

  font-size: 18px;

  line-height: 39px;

  color: #ffffff;

  font-weight: 600;

  font-family: "Titillium Web";

  margin-left: 20px;

}



.custom_banner h3 {

  font-size: 36px;

  color: #ffffff;

  font-weight: 700;

  font-family: "Titillium Web";

  margin-top: 15px;



}



.custom_banner p {

  font-size: 16px;

  line-height: 25px;

  color: #f6f6f6;

  font-weight: 400;

  font-family: "Roboto";

  padding-right: 40px;

}



.custom_label {

  padding: 40px 0px;

}



.custom_label h2 {

  font-size: 36px;

  color: #062540;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

}



.custom_label h5 {

  font-size: 25px;

  color: #062540;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

}



.custom_label .content {

  border-radius: 5px;

  background-color: #ffffff;

  border: 1px solid #e0e0e0;

  text-align: center;

  padding: 30px 20px;

  margin-bottom: 30px;

}



.custom_label .content img {

  margin: auto;

  height: 190px;

  object-fit: contain;

}



.custom_heading {

  margin-bottom: 30px;

}



/* custom label page styling  */



/* universal section start */

.universal_section {

  padding: 0px 0px;

}



.universal_section img {

  border-radius: 20px;

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.23));

  background-color: #ffffff;

  border: 0px solid #000000;

}



.support_top img {

  filter: unset;

  height: 232px;

  object-fit: contain;



}



.universal_section h3 {

  font-size: 24px;

  color: #383838;

  font-weight: 700;

  font-family: "Roboto";

  margin: 20px 0px;

}



.universal_section p {

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



.universal_section .content {

  padding-right: 30px;

}



.quote {

  padding: 40px 0px;

  background-color: #f3f3f6;

}



.quote h3 {

  font-size: 36px;

  color: #0a0e3b;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

  margin-bottom: 30px;

}



.quote label {

  font-size: 16px;

  color: #383838;

  font-weight: 400;

  font-family: "Titillium Web";

  margin-bottom: 10px;

  padding-left: 10px;

}



.quote .form-group {

  margin-bottom: 20px;

}



.quote .form-group .form-control {

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.08));

  background-color: #ffffff;

  border: 1px solid #b9c5d0;

  height: 50px;

}



.form-control:focus {

  color: #212529;

  background-color: #fff;

  border-color: #b9c5d0;

  outline: 0;

  box-shadow: none;

}



.quote .form-group textarea.form-control {

  min-height: 100px;

}



.quote .btn input {

  width: 159px;

  height: 64px;

  border-radius: 5px;

  background-color: #ffa100;

  border: 0px solid #000000;

  font-size: 24px;

  color: #000000;

  font-weight: 400;

  font-family: "Roboto";

  text-align: center;

  transition: 0.5s linear all;

}



.quote .btn input:hover {

  background-color: #3a7dda;

  color: #fff;





}



.uni_who {



  background-color: #f8f8f8;

}



.uni_bottom {

  background-color: #fff;

}



/* universal section  end*/



/* support section  start */

.support {

  padding: 40px 0px;

  padding-top: 0px;

}



.support .content {

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.08));

  background-color: #ffffff;

  padding: 20px 30px;

}



.support .form-check {

  display: flex;

  padding-left: 0px;

}



.support .checkbox {

  position: relative;

  overflow: hidden;

}



.support .checkbox__input {

  position: absolute;

  top: -100px;

  left: -100px;

}



.support .checkbox__inner {

  display: inline-block;



  width: 22px;

  height: 22px;

  border-radius: 11px;

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.08));



  border: 1px solid rgba(0, 0, 0, .25);

  background: transparent no-repeat center;

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.08));

}



.support .checkbox__input:checked+.checkbox__inner {

  border-color: #0d6efd;

  background-color: #0d6efd;

  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");

  background-size: 22px 21px;



}



.support .content .form-group label {

  font-size: 16px;

  color: #383838;

  font-weight: 400;

  font-family: "Titillium Web";

  margin-bottom: 10px;

}



.support .content .form-control {

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.08));

  background-color: #ffffff;

  border: 1px solid #b9c5d0;

  height: 50px;

  margin-bottom: 15px;

}



.support .content textarea.form-control {

  height: 91px;

}



.support .margin_left_checkbox {

  margin-left: 20px;

}



.support h6 {

  font-size: 18px;

  line-height: 29px;

  color: #383838;

  font-weight: 700;

  font-family: "Roboto";

  margin-bottom: 20px;

}



.support .code {

  height: 100%;

  display: flex;

  align-items: center;

  padding-top: 15px;

}



.support .code a {

  text-decoration: none;

  font-size: 16px;

  color: #003667;

  font-weight: 700;

  font-family: "Titillium Web";

  margin-left: 20px;

}



.support .btn_section input {

  width: 159px;

  height: 64px;

  border-radius: 5px;

  background-color: #ffa100;

  border: 0px solid #000000;

  font-size: 24px;

  color: #000000;

  font-weight: 400;

  font-family: "Roboto";

  text-align: center;

}



.support .btn_section input:hover {



  background-color: #3a7dda;

  color: #fff;

}



.support .btn_section .margin_left_btn {

  margin-left: 10px;

}



.support .form-check-input {

  width: 22px;

  height: 22px;

  border-radius: 11px;

  filter: drop-shadow(0 0 10.5px rgba(0, 0, 0, 0.08));

}



.support .form-check-input {

  font-size: 14px;

  color: #383838;

  font-weight: 400;

  font-family: "Titillium Web";

}



.support .content .form-group .form-check-label {

  font-size: 14px;

  color: #383838;

  font-weight: 400;

  font-family: "Titillium Web";

  margin-left: 10px;



}



/* support section  end */



/* Healthcare section  */



.health_care {

  padding: 30px 0px;

  background-color: #f0f0f0;

}



.health_care .content {

  height: 100%;

  border-radius: 20px;

  background-color: #ffffff;

  border: 0px solid #000000;

  padding-top: 30px;

  padding-bottom: 30px;

}



.health_care h2 {

  font-size: 36px;

  color: #062540;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

}



.health_care ul {

  list-style: none;

  padding-left: 20px;

}



.health_care ul li {

  display: flex;

  align-items: center;

}



.health_care ul li a {

  font-size: 18px;

  line-height: 48px;

  color: #000000;

  font-weight: 400;

  font-family: "Roboto";

  margin-left: 15px;

}



.health_care ul img {

  height: 20px;

}



.health_care .bottom_heading {



  margin-bottom: 30px;

}



.libortry_example {

  padding: 20px 0px;

}



.libortry_example h2 {

  font-size: 36px;

  color: #062540;

  font-weight: 700;

  font-family: "Titillium Web";

  text-align: center;

  margin-bottom: 30px;

}



.libortry_example .content {

  border-radius: 5px;

  background-color: #ffffff;

  border: 1px solid #e0e0e0;

  text-align: center;

  padding: 20px 30px;

  margin-bottom: 30px;

}



.libortry_example .content img {

  margin: auto;

  height: 190px;

  object-fit: contain;

}



.health_banner {

  padding: 40px 0px;

  background-color: #3a7dda;

}



.health_banner p {

  font-size: 16px;

  line-height: 24px;

  color: #ffffff;

  font-weight: 400;

  font-family: "Roboto";

}



.health_banner .content {

  padding-right: 20px;

}



.health_detail {

  padding: 40px 0px;

}



.health_detail ul {

  list-style: none;

  padding-left: 0px;

}



.health_detail ul li {

  display: flex;

  align-items: center;

}



.health_detail ul li a {

  text-decoration: none;

  font-size: 16px;

  line-height: 25px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

  margin-left: 15px;

}



.health_detail p {

  font-size: 16px;

  line-height: 24px;

  color: #383838;

  font-weight: 400;

  font-family: "Roboto";

}



/* Healthcare section  */



/* company profile section start */

.company_top_image {

  width: 100% !important;

  height: 300px;

  object-fit: cover;

  border-radius: 10px;

}



/* company profile section end */





/* printer sale page styling  start */



.overview_img {

  border-radius: 20px;

}



.ribbon_img {

  border-radius: 10px;

}



.ribbon h3 {

  margin-top: 0px;

}



.text-danger {

  color: #dc3545 !important;

  font-size: 20px;

}



/* printer sale page styling  end*/



@-webkit-keyframes anim-1 {



  0%,

  8.3% {

    left: -100%;

    opacity: 0;

  }



  8.3%,

  25% {

    left: 5%;

    opacity: 1;

  }



  33.33%,

  100% {

    left: -110%;

    opacity: 0;

  }

}



@keyframes anim-1 {



  0%,

  8.3% {

    left: -100%;

    opacity: 0;

  }



  8.3%,

  25% {

    left: 5%;

    opacity: 1;

  }



  33.33%,

  100% {

    left: -110%;

    opacity: 0;

  }

}



@-webkit-keyframes anim-2 {



  0%,

  33.33% {

    left: -100%;

    opacity: 0;

  }



  41.63%,

  58.29% {

    left: 5%;

    opacity: 1;

  }



  66.66%,

  100% {

    left: -110%;

    opacity: 0;

  }

}



@keyframes anim-2 {



  0%,

  33.33% {

    left: -100%;

    opacity: 0;

  }



  41.63%,

  58.29% {

    left: 5%;

    opacity: 1;

  }



  66.66%,

  100% {

    left: -110%;

    opacity: 0;

  }

}



@-webkit-keyframes anim-3 {



  0%,

  66.66% {

    left: -100%;

    opacity: 0;

  }



  74.96%,

  91.62% {

    left: 5%;

    opacity: 1;

  }



  100% {

    left: -110%;

    opacity: 0;

  }

}



@keyframes anim-3 {



  0%,

  66.66% {

    left: -100%;

    opacity: 0;

  }



  74.96%,

  91.62% {

    left: 5%;

    opacity: 1;

  }



  100% {

    left: -110%;

    opacity: 0;

  }

}





/* Media Query section   */



@media (min-width: 576px) and (max-width: 1400px) {

  .container {

    width: 96%;

    max-width: 96%;

  }

}



/* Media screen 1200 px  */



@media (max-width: 1230px) and (min-width:1216px) {





  .services .content img {

    margin: auto;

    padding: 20px 10px;

  }



  .services .custom_card .content img {

    padding-top: 0px;

  }









}





@media only screen and (min-width: 1200px) {

  .services .col_card {

    width: calc(100%/5) !important;

    padding: 5px;

  }





}



@media (max-width: 1200px) and (min-width:991px) {

  .services .content .printer_sale {

    padding-top: 0px;

  }





}



@media only screen and (max-width: 1215px) {



  .navbar-light .navbar-nav .nav-link {

    font-size: 14px;

    line-height: 34px;

    color: #212121;

    font-weight: 500;

    font-family: "Roboto";

  }



  @media only screen and (max-width: 1200px) {



    .card_col {

      margin-bottom: 30px;

    }

  }



  .navbar-expand-lg .navbar-nav .nav-link {

    padding-right: 0.4rem !important;

    padding-left: 0.4rem !important;

  }



  .home .container .home-details .home-info .item-1 .home-title h1 {

    font-size: 32px;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-title .title-sub {

    font-family: 'Roboto', sans-serif;

    font-weight: 300;

    font-size: 16px;

    color: #ffffff;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-btn a {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

    -ms-flex-align: center;

    align-items: center;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;

    width: 328px;

    height: 54px;

    border-radius: 5px;

    background-color: #ffa100;

    border: 0px solid #000000;

    font-size: 17px;

    color: #ffffff;

    font-weight: 300;

    font-family: "Roboto";

    text-align: center;

  }



  .services .content {





    border-radius: 5px;

    filter: drop-shadow(0 0 10.5px rgba(160, 160, 160, 0.46));

    background-color: #f3f3f3;

    border: 0px solid #000000;

    text-align: center;

    margin: auto;

  }



  .services .content h3 {

    font-size: 20px;

  }



  .thermal_section .ul_company a {

    text-decoration: none;

    margin-right: 10px;

    margin-left: 10px;

    font-size: 12px;

    line-height: 48px;

    color: #383838;

    font-weight: 400;

    font-family: "Roboto";

  }



  .thermal_row_1 {

    align-items: center !important;

  }

}





@media only screen and (max-width: 1150px) {

  .services .content {



    border-radius: 5px;

    filter: drop-shadow(0 0 10.5px rgba(160, 160, 160, 0.46));

    background-color: #f3f3f3;

    border: 0px solid #000000;

    text-align: center;

    margin: auto;

  }



  .services .content h3 {

    padding: 25px 10px;

  }



  .services .content_3 h3 {

    padding: 15px 10px;

  }



  .home-bottom .btn_bottom {

    font-size: 14px;



  }



  .card_section .card_content ul li a {

    font-size: 14px;

    line-height: 39px;

    color: #222222;

    font-weight: 600;

    font-family: "Titillium Web";

  }



  .card_top_img {

    margin-top: 20px;

    height: 300px !important;

    object-fit: contain;

  }

}



@media(max-width:1024px) {

  .thermal_section ul {

    padding-left: 0px;

    /* place-content: flex-start; */



    align-items: flex-start !important;

  }

}



/* Media screen 991 px  */



@media (min-width: 992px) {

  .navbar-expand-lg .navbar-nav {

    flex-direction: row;

    width: 100%;

    justify-content: space-around !important;

    margin-top: 50px;

  }



  .navbar-expand-lg .navbar-nav .nav-link {

    padding-right: 0.7rem;

    padding-left: 0.7rem;

  }



  .home {

    padding: 0px 0px;

  }



  .carousel-indicators {

    position: absolute;

    right: 0px;

    bottom: -5px;

    left: 0px;

    z-index: 2;

    display: flex;

    justify-content: center;

    padding: 0px;

    margin-right: 15%;

    margin-bottom: 1rem;

    margin-left: 15%;

    list-style: none;

  }

}



@media only screen and (max-width: 991px) {

  .main-page .services-section .container .services-card .services-card-list {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -ms-flex-wrap: wrap;

    flex-wrap: wrap;

    margin-left: -20px;

    margin-top: 0px;

    margin-left: 00px;

  }



  .main-page .services-section .container .services-card .services-card-list>* {

    padding-left: 0px;

    padding-top: 0px;

  }



  .main-page .services-section .container .services-title h2 {

    font-size: 40px;

  }



  .home-section .home .container .home-details .home-img img {

    max-width: 80%;

    margin: auto;

  }



  .main-page .services-section {

    padding-top: 15px;

    padding-bottom: 15px;

  }



  .services .content {

    margin-bottom: 30px;

  }



  .services .content {

    width: 100%;

  }



  footer .page-footer .container .footer-info .contact-info .footer-logo {

    padding-top: 20px;

    padding-bottom: 20px;

  }









  header .container .page-header .logo img {

    max-width: 90px;

  }



  header .container .page-header nav>ul li:not(:last-child) {

    padding: 10px 15px;

  }



  header .container .page-header nav.active {

    -webkit-transform: translateX(0);

    transform: translateX(0);

    top: 60px;

  }



  footer .page-footer .container .footer-info {

    padding-top: 20px;

    padding-bottom: 20px;

  }



  .large_screen {

    display: none;

  }



  .small_screen {

    display: block;

    background-color: #3a7dda;

    padding-top: 5px;

    padding-bottom: 5px;

  }



  .small_screen .top-bar {

    position: static;

  }



  .small_screen .top-bar .email-area a {

    color: #fff;

  }



  .small_screen .top-bar .phone-area a {



    color: #fff;

    padding-right: 20px;

  }



  .col_felx {

    display: flex;

    flex-direction: column;

    align-items: start;

  }



  .bottom_radio .radio_box {

    flex-direction: column;

  }



  .bottom_radio .radio_box .margin_left_checkbox {

    margin-left: 0px !important;

  }



  .thermal_top {

    height: 400px;

    object-fit: contain;

    margin-bottom: 30px;

  }



  .standard {

    padding: 20px 0px;

  }



  .thermal_section h3 {

    margin-top: 0px;

  }



  .thermal_section {

    padding: 20px 0px;

    background-color: #f3f3f6;

  }



  .quote label {

    font-size: 14px;

    color: #383838;

    font-weight: 400;

    font-family: "Titillium Web";

    margin-bottom: 10px;

    padding-left: 10px;

  }



  .health_care .content {

    margin-bottom: 20px;

  }



  .home-section .home .container .home-details .home-img img {



    height: auto;

  }

}



@media only screen and (max-width: 991px) and (max-width: 600px) {

  .main-page .services-section .container .services-card .services-card-list {

    margin-left: 0;

  }

}



@media (max-width:767px) {

  header {

    padding-top: 10px;

    padding-bottom: 10px;

  }



  .main-page .services-section .container .services-title h2 {

    font-size: 30px;

  }



  .home-section .home .container .home-details .home-img {

    padding-top: 72px;

    padding-bottom: 15px;

  }



  .home-section .home .container .home-details {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

  }



  header .container .page-header nav>ul {

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-direction: column;

    flex-direction: column;

    -webkit-box-align: start;

    -ms-flex-align: start;

    align-items: flex-start;

    padding-left: 15px;

  }



  header .container .page-header {

    -ms-flex-wrap: wrap;

    flex-wrap: wrap;

  }



  header .container .page-header .logo {

    max-width: 100%;

    width: 100%;

    -webkit-box-ordinal-group: 1;

    -ms-flex-order: 0;

    order: 0;

    -webkit-box-pack: justify;

    -ms-flex-pack: justify;

    justify-content: space-between;

  }



  header .container .page-header .logo .toggle {

    display: block;

    -webkit-box-ordinal-group: 1;

    -ms-flex-order: 0;

    order: 0;

  }



  header .container .page-header .logo .toggle .menu-icon {

    display: block;

  }



  header .container .page-header nav {

    position: absolute;

    -webkit-transform: translateX(-200%);

    transform: translateX(-200%);

    -webkit-transition: all 300ms ease;

    transition: all 300ms ease;

    top: 75px;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

  }



  header .container .page-header nav {

    top: 60px;

  }



  header .container .page-header nav>ul li:not(:last-child) {

    padding: 20px 0px;

  }



  header .container .page-header nav>ul li:first-child {

    padding-top: 40px;

  }



  header .container .page-header nav>ul li:last-child {

    padding-left: 0;

    padding-top: 20px;

  }



  header .container .page-header nav>ul li a {

    padding: 0;

  }



  .main-page .service2 .services-title h2 {

    font-size: 23px !important;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-title h1 {

    font-size: 20px;

    margin-top: 30px;



  }



  .home-section .home .container .home-details .home-info .item-1 .home-title .title-sub {

    font-size: 14px;



  }



  .home-section .home .container .home-details .home-info .item-1 .home-btn a {

    width: 320px;

    height: 45px;

    margin: auto;

  }



  .home-section .home .container .home-details .home-info .item-1 {

    top: 95%;



  }



  .home-section .home .container .home-details .home-info {

    text-align: center;

  }



  .home-details.align-items-center {

    align-items: inherit !important;

  }



  .main-page .service2 .services-card .services-card-list .list-items {

    width: calc(100% / 1) !important;

    padding: 0px 10px;

    margin-bottom: 30px;

  }



  .home {



    padding-top: 0px;

  }



  .home-section .home .container .home-details .home-info {

    position: relative;

    height: 85px;

  }





  .home-bottom h3 {

    font-size: 20px;

  }



  .home-bottom p {

    font-size: 14px;

  }



  .home-bottom .btn_bottom {

    font-size: 13px;

    padding: 15px;

  }



  .col_felx {

    align-items: start;

  }



  .main-page .services-section .container .services-card .services-card-list {

    margin-left: 0px;

  }



  footer .page-footer .container .footer-info .contact-info {

    width: 100%;

  }



  footer .page-footer .container .footer-info .contact-info .contact-bar {

    width: 100%;

  }



  footer .page-footer .footer-bottom p {

    text-align: center;



  }



  .main-page .services-section .container .services-card .services-card-list>* {

    margin-bottom: -25px;

  }



  .btn_section {

    margin-top: 30px;

  }



  .standard h2 {

    font-size: 24px;

    padding-bottom: 20px;



  }



  .thermal_top {

    height: 400px;

    object-fit: contain;

    margin-bottom: 30px;

  }



  .standard {

    padding: 20px 0px;

  }



  .thermal_section h3 {

    margin-top: 0px;

  }



  .thermal_section {

    padding: 20px 0px;

    background-color: #f3f3f6;

  }



  .thermal_section h3 {

    font-size: 18px;

  }



  .reverse_col {

    flex-direction: column-reverse;

  }



  .about {

    padding: 20px 0px !important;

  }



  .company_top_image {

    object-fit: contain;

    margin-bottom: 20px;

  }



  .card_content {

    margin-bottom: 20px;

  }







  .universal_section {

    padding: 20px 0px;

  }



  .universal_section .content {

    padding-right: 0px;

  }



  .universal_section h3 {

    font-size: 18px;

    color: #383838;

    font-weight: 700;

    font-family: "Roboto";

    margin-bottom: 20px;

  }



  .uni_who img {

    margin-bottom: 20px;

  }



  .health_care .content {

    margin-bottom: 20px;

  }



  .health_care h2 {

    font-size: 22px;

    color: #062540;

    font-weight: 700;

    font-family: "Titillium Web";

    text-align: center;

  }



  .health_care {

    padding: 20px 0px;

    background-color: #f0f0f0;

  }



  .libortry_example h2 {

    font-size: 22px;

  }



  .libortry_example {

    padding: 20px 0px;

  }



  .health_banner img {

    margin-bottom: 20px;

  }



  .health_banner {

    padding: 20px 0px;

    background-color: #3a7dda;

  }



  .health_banner .content {

    padding-right: 0px;

  }



  .health_detail .health_img {

    margin-bottom: 20px;

  }



  .health_detail .bottom_text {

    margin-top: 0px !important;

  }



  .health_detail ul li a {

    text-decoration: none;

    font-size: 14px;

  }

}





@media only screen and (max-width: 600px) {

  .main-page .services-section .container .services-card .services-card-list>* {

    padding-left: 0;

  }



  .main-page .services-section .container .services-card .services-card-list {

    padding-top: 20px;

    margin-left: 0px !important;

  }



  .main-page .services-section .container .services-card .services-card-list {

    margin-left: 0;

  }



  .main-page .services-section .container .services-title h2 {

    font-size: 24px;

  }





  .home-section .home .container .home-details .home-img img {

    max-width: 100%;

    margin: auto;

  }





  .home-section .home .container .home-details .home-info .item-1 {

    top: 118%;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-title h1 {

    font-size: 16px;

    margin-top: 30px;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-title .title-sub {

    font-size: 14px;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-btn a {

    width: 63%;

    height: 50px;

  }



  footer .page-footer .container .footer-info .contact-info .contact-bar .contact-bar-img img {

    -o-object-fit: fill;

    object-fit: fill;

  }



  footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils {

    padding-left: 30px;

  }



  footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils .top-heading {

    font-size: 11px;

  }



  footer .page-footer .container .footer-info .contact-info .contact-bar .contact-deatils span {

    font-size: 16px;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-btn a {

    width: 63%;

    height: 50px;

  }



  .home-section .home .container .home-details .home-img {

    padding-top: 100px;

    padding-bottom: 15px;

    margin-bottom: 22px;

  }



  .home-btn {

    margin-bottom: 60px;

  }



  .navbar-brand {

    width: 70%;

  }



  .radio_box {

    flex-direction: column;

  }



  .margin_left_checkbox {

    margin-left: 0px !important;

  }



  .form-check {

    display: flex;

  }



  .support .content .form-group .form-check-label {

    font-size: 14px;

    color: #383838;

    font-weight: 400;

    font-family: "Titillium Web";

    margin-left: 10px;

    margin-top: 2px;

    width: 85%;

  }



  .support .btn_section button {

    width: 110px;

    height: 40px;

    border-radius: 5px;

    background-color: #ffa100;

    border: 0px solid #000000;

    font-size: 19px;

    color: #000000;

    font-weight: 400;

    font-family: "Roboto";

    text-align: center;

  }



  .support .code a {

    text-decoration: none;

    font-size: 13px;

  }

}





@media only screen and (max-width: 450px) {

  .home-section .home .container .home-details .home-info .item-1 .home-btn a {

    width: 78%;

    height: 35px;

    font-size: 14px;

  }



  .home-section .home .container .home-details .home-info .item-1 .home-title h1 {

    font-size: 14px;



  }



  .home-section .home .container .home-details .home-info .item-1 .home-title .title-sub {

    font-size: 12px;

  }



  .navbar-brand {

    width: 70%;

  }



  .home-bottom .btn_bottom {

    font-size: 9px;

    padding: 9px;

  }



  .home-btn {

    margin-bottom: 0px;

  }



  .top-bar .email-area a {

    font-size: 10px;

  }



  .email-icon img,

  .phone-icon img {

    height: 10px;

  }



  .top-bar .phone-area a {

    font-size: 10px;



  }



  .main-page .service2 .services-title {

    padding-bottom: 0px;

  }



  .main-page .service2 .services-title h2 {

    font-size: 17px !important;

    margin-bottom: 0px !important;

  }



  .services {

    padding: 20px 0px;

  }



  .standard h2 {

    font-size: 18px;

    padding-bottom: 0px;

  }

}



@media (max-width: 400px) {

  .thermal_top {

    height: 300px;

    object-fit: contain;

    margin-bottom: 30px;

  }



  .card_top_img {

    margin-top: 20px;

    height: 100% !important;

    object-fit: contain;

  }



  .quote button {

    width: 110px;

    height: 45px;

    font-size: 20px;

  }



  .quote h3 {

    font-size: 28px;

    color: #0a0e3b;

    font-weight: 700;

    font-family: "Titillium Web";

    text-align: center;

    margin-bottom: 20px;



  }



  .quote {

    padding: 20px 0px;

    background-color: #f3f3f6;

  }



  .who h3,

  .set h3 {

    font-size: 22px;

    line-height: 24px;

    color: #383838;

    font-weight: 700;

    margin-bottom: 30px;

    margin-top: 20px;

    font-family: "Titillium Web";

  }

}



/* xxx */







@media only screen and (min-width: 228px) and (max-width: 367px) {



  .menu-overlay {

    background-color: #fff;

    color: #333;

    height: 100%;

    width: 100%;

    position: fixed;

    text-align: center;

    -webkit-transition: opacity 0.2s ease-in-out;

    transition: opacity 0.2s ease-in-out;

    z-index: 1001;

    opacity: 0;

    visibility: hidden;

    padding: 20px 20px;



  }



  .menu-content h2 {

    font-size: 20px !important;

    margin-top: 50px;

  }



}