@import url("https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@800&display=swap");
/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Anek Bangla", sans-serif;
}

*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color-main: #1D87CF;
  --bg-color-gray: #674A76;
  --sec-color-main: #937F9D;
  --text-color-main: #ffffff;
  --btn-color-main: #e6ce4b;
  --bg-color-dark: #F5F5F5;
  --bg-color-light: #E7E7E7;
  --text-color-dark: #013220;
}

.btn {
  font-weight: 700;
  background: var(--btn-color-main);
  color: var(--text-color-main);
  border-radius: 10px 10px 10px 10px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--bg-color-main);
  color: var(--text-color-main);
}

.pd-50 {
  padding: 50px 0px;
}

ul {
  padding-left: 0px;
}
ul li {
  list-style-type: none;
}

/* top manu start */
.manu-top {
  background: var(--bg-color-gray);
  border-bottom: 1px solid var(--text-color-dark);
}
.manu-top .nav-top {
  padding: 15px 0px 8px;
}
.manu-top .nav-top .nav-phone {
  float: left;
}
.manu-top .nav-top .nav-phone p {
  font-size: 18px;
  font-weight: 900;
}
.manu-top .nav-top .nav-phone p i {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  color: var(--bg-color-main);
  background: var(--text-color-main);
  text-align: center;
  line-height: 30px;
  display: inline-block;
  margin-right: 8px;
}
.manu-top .nav-top .nav-phone p a {
  color: var(--text-color-main);
  text-decoration: none;
}
.manu-top .nav-top .nav-social {
  float: right;
}
.manu-top .nav-top .nav-social a {
  font-size: 18px;
  display: inline-block;
  margin-left: 8px;
}
.manu-top .nav-top .nav-social a i {
  height: 25px;
  width: 25px;
  border-radius: 5px;
  color: var(--bg-color-main);
  background: var(--text-color-main);
  text-align: center;
  line-height: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}
.manu-top .nav-top .nav-social a:hover i {
  background: var(--btn-color-main);
}

/* top manu end */
/* manu start */
.manu {
  background: var(--bg-color-gray);
}
.manu .nav-button nav .navbar-brand img {
  width: 50px;
  height: 50px;
}
.manu .nav-button nav .navbar-brand .logo-text {
  width: 140px;
}
.manu .nav-button nav .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color-main);
  padding-right: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.manu .nav-button nav .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: var(--btn-color-main);
}
.manu .nav-button nav .navbar-collapse .navbar-nav .nav-item:last-child .nav-link {
  padding-right: 0px;
}
.manu .nav-button nav .navbar-collapse .navbar-nav .nav-item .active {
  color: var(--btn-color-main);
}
.manu .nav-button nav .navbar-collapse .navbar-nav .dropdown .dropdown-menu {
  background: var(--bg-color-gray);
}
.manu .nav-button nav .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  margin: 30px 20px 20px 10px;
  background: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color-main);
  transition: all 0.3s ease;
}
.manu .nav-button nav .navbar-collapse .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--btn-color-main);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: var(--btn-color-main);
}

.navbar-light .navbar-toggler {
  background: var(--bg-color-light);
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

.dropdown:focus .dropdown-menu {
  display: block !important;
}

/* manu end */
/* home section start */
.home {
  height: 80vh;
  position: relative;
}
.home .overlay-home {
  position: absolute;
  background: rgba(180, 166, 166, 0.5);
  width: 100%;
  height: 100%;
}
.home .overlay-home .home-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.home .overlay-home .home-content .home-element {
  margin-top: 100px;
}
.home .overlay-home .home-content .home-element h1 {
  text-align: center;
  color: #1D87CF;
  font-size: 59px;
  font-weight: 600;
}
.home .overlay-home .home-content .home-element p {
  text-align: center;
  font-size: 20px;
  padding: 10px 0px;
  color: var(--text-color-dark);
}
.home .overlay-home .home-content .home-element a {
  display: inline-block;
  z-index: 1;
}
.home .overlay-home .home-image {
  position: absolute;
  margin-top: 10px;
  z-index: 1;
}
.home .overlay-home .home-image img {
  width: 75%;
  display: block;
}
.home .overlay-home .svg-section img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}
.home #particles-js {
  position: absolute;
  height: 100%;
  width: 100%;
}

/* home section end */
/* heading start */
.heading {
  text-align: center;
  padding: 10px 0px 50px;
}
.heading h1 {
  color: var(--btn-color-main);
  font-size: 40px;
  font-weight: 900;
}
.heading .icon {
  width: 200px;
  margin: 0 auto;
  position: relative;
}
.heading .icon i {
  font-size: 20px;
  margin-top: 20px;
}
.heading .icon::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 2px;
  top: 28px;
  left: -115px;
  background: var(--btn-color-main);
}
.heading .icon::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 2px;
  top: 28px;
  right: -115px;
  background: var(--btn-color-main);
}

/* heading end */
/* counter start */
.count {
  background: var(--text-color-main);
  min-height: 220px;
  height: 100%;
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.count .display-4 {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--bg-color-main);
}
.count .plass {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--bg-color-main);
}
.count .count_text {
  font-size: 17px;
  color: var(--text-color-dark);
  margin-top: 20px;
  text-transform: uppercase;
}

/* counter end */
/* services section start */
.services {
  background: var(--bg-color-dark);
}
.services .service-top .service-content {
  text-align: center;
}
.services .service-top .service-content h3 {
  color: var(--btn-color-main);
  font-size: 22px;
  font-weight: 600;
}
.services .service-top .service-content h1 {
  color: var(--bg-color-main);
  font-size: 50px;
  font-weight: 900;
  padding: 50px 0px 30px;
}
.services .service-top .service-content p {
  color: var(--text-color-dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 0px;
}
.services .service-top .service-content span {
  display: block;
  font-size: 25px;
  color: var(--text-color-dark);
  font-weight: 900;
  margin-bottom: 50px;
}
.services .service-top .service-content .about-us {
  background: var(--bg-color-main);
  margin-right: 20px;
}
.services .service-top .service-content .about-us:hover {
  background: var(--btn-color-main);
}
.services .service-buttom {
  margin-top: 70px;
}
.services .service-buttom .service-buttom-item {
  text-align: center;
  background: var(--sec-color-main);
  padding: 30px;
  margin-bottom: 30px;
}
.services .service-buttom .service-buttom-item img {
  width: 60px;
  display: inline-block;
  margin: 10px 0 13px 0;
}
.services .service-buttom .service-buttom-item h4 {
  color: var(--btn-color-main);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}
.services .service-buttom .service-buttom-item p {
  color: var(--text-color-main);
  font-size: 15px;
  font-weight: 100;
  line-height: 30px;
  padding: 10px 0px;
}
.services .service-buttom .service-buttom-item .servic-btn {
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #696969;
  padding: 15px 10px;
}
.services .service-buttom .bg-change {
  background: var(--text-color-main);
  border: 2px solid var(--btn-color-main);
}
.services .service-buttom .bg-change p {
  color: var(--bg-color-main);
}

/* services section end */
/* production section start */
.production .production-bg {
  background: var(--bg-color-main);
}
.production .production-bg .production-image img {
  display: block;
}
.production .production-bg .production-content h4 {
  color: var(--bg-color-light);
  font-size: 22px;
  font-weight: 600;
}
.production .production-bg .production-content h2 {
  color: var(--btn-color-main);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4em;
  padding: 20px 0px;
}
.production .production-bg .production-content p {
  color: var(--text-color-main);
  line-height: 30px;
}
.production .production-bg .production-content ul li {
  color: var(--bg-color-light);
}
.production .production-bg .production-content ul li i {
  color: var(--btn-color-main);
  margin-right: 8px;
}
.production .type-element {
  padding: 50px 0px 10px;
  text-align: center;
  background: url(../images/svg/wave3.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.production .type-element h1 {
  color: var(--btn-color-main);
  font-size: 25px;
  font-weight: 700;
}
.production .type-element h1 .element {
  color: var(--bg-color-main);
}

/* production section end */
/* team section start */
.team {
  text-align: center;
  background: var(--bg-color-dark);
}
.team .heading h1 {
  color: var(--bg-color-main);
}
.team .team_member img {
  width: 224px;
  height: 224px;
  border-radius: 100%;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
}
.team .team_member h4 {
  font-size: 24px;
  font-weight: 700;
  padding-top: 20px;
  color: var(--text-color-dark);
}
.team .team_member p {
  font-size: 18px;
  color: var(--text-color-dark);
  font-weight: 500;
}
.team .team_member ul li {
  list-style-type: none;
  margin-left: 20px;
  display: inline-flex;
  transition: all 0.2s;
}
.team .team_member ul li a {
  height: 40px;
  width: 40px;
  display: block;
  line-height: 40px;
  border-radius: 100%;
  background: #343a40;
  color: #fff;
}
.team .team_member ul li a:hover {
  background: #000;
  color: #fff;
}
.team .team_member ul li:first-child {
  margin-left: 0px;
}

/* team section end */
/* consaltenchi section start */
.consaltenchi {
  background: var(--bg-color-light);
}
.consaltenchi .consaltenchi-content {
  text-align: center;
}
.consaltenchi .consaltenchi-content i {
  width: 135px;
  height: 135px;
  display: inline-block;
  color: var(--btn-color-main);
  border: 2px solid var(--btn-color-main);
  border-radius: 50%;
  font-size: 65px;
  line-height: 126px;
}
.consaltenchi .consaltenchi-content h2 {
  color: var(--bg-color-main);
  font-size: 40px;
  font-weight: 900;
  padding: 50px 0px 20px;
}
.consaltenchi form .consaltenchi-form-group {
  margin-bottom: 20px;
}
.consaltenchi form .consaltenchi-form-group input {
  height: 50px;
  width: 100%;
  display: block;
  padding: 8px;
  border: 2px solid var(--bg-color-main);
}
.consaltenchi form .consaltenchi-form-group input:focus-visible {
  outline: 0;
}
.consaltenchi form .consaltenchi-form-group button {
  height: 50px;
  width: 100%;
  display: block;
  color: var(--text-color-main);
  background: var(--bg-color-main);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  border: 2px solid var(--bg-color-main);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.consaltenchi form .consaltenchi-form-group button:focus-visible {
  outline: 0;
}
.consaltenchi form .consaltenchi-form-group button:hover {
  color: var(--btn-color-main);
  background: #397eac;
}

/* consaltenchi section end */
/* clint section start */
.clint {
  background: var(--text-color-main);
}
.clint .heading {
  padding-bottom: 50px;
}
.clint .heading h1 {
  font-size: 55px;
  color: var(--bg-color-main);
}
.clint .heading p {
  color: var(--text-color-dark);
  font-size: 16px;
  font-weight: 500;
}
.clint .clint-item {
  text-align: center;
  margin-bottom: 30px;
}
.clint .clint-item img {
  display: inline-block;
  width: 100px;
  height: 100px;
}

/* clint section end */
/* clint comments start */
.c_comments {
  background-image: url(../images/home/team-plus.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.c_comments .c_comment_overlay {
  background-color: hsla(218, 83%, 44%, 0.817);
  padding: 50px 0px;
  text-align: center;
  color: #fff;
}
.c_comments .c_comment_overlay .c_comments_content {
  padding: 30px;
  background-color: hsla(234, 61%, 40%, 0.769);
  margin-top: 30px;
}
.c_comments .c_comment_overlay .c_comments_content img {
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}
.c_comments .c_comment_overlay .c_comments_content p {
  line-height: 30px;
}
.c_comments .c_comment_overlay .c_comments_content h5 {
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 30px;
}
/* clint comments end */
/* clint review start */
.review {
  background: #E8E8E8;
  padding: 30px 0px;
}
.review .google_review h3 {
  text-align: center;
  margin: 20px 0px;
}
.review .google_review .google_review_con {
  margin-bottom: 20px;
}
.review .google_review .google_review_con .google_review_con_up {
  padding: 15px;
  background: #fff;
  position: relative;
}
.review .google_review .google_review_con .google_review_con_up span {
  font-size: 40px;
  color: #b0b0b0;
}
.review .google_review .google_review_con .google_review_con_up .icons {
  display: inline-block;
  margin-left: 30px;
}
.review .google_review .google_review_con .google_review_con_up .icons i {
  color: #e6ce4b;
}
.review .google_review .google_review_con .google_review_con_up svg {
  height: 25px;
  width: 25px;
  display: inline-block;
}
.review .google_review .google_review_con .google_review_con_up p {
  display: inline-block;
}
.review .google_review .google_review_con .google_review_con_up img {
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.review .google_review .google_review_con .google_review_con_up ::after {
  bottom: -30px;
  box-sizing: border-box;
  color: #fff;
  content: "";
  display: block;
  height: 30px;
  left: 80px;
  position: absolute;
  right: 445px;
  text-size-adjust: 100%;
  width: 30px;
  column-rule-color: #fff;
  perspective-origin: 15px 15px;
  transform-origin: 15px 15px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.0980392));
  border-top: 30px solid #fff;
  border-right: 30px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 0 solid transparent;
  font: normal normal normal normal 13px/20.8px "Helvetica Neue", Helvetica, Arial, sans-serif;
  outline: #fff none 0;
}
.review .google_review .google_review_con .google_review_con_down {
  margin-top: 30px;
}
.review .google_review .google_review_con .google_review_con_down img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-left: 20px;
}
.review .google_review .google_review_con .google_review_con_down h6 {
  display: inline-block;
  margin-left: 20px;
}
.review .google_review a {
  padding: 10px;
  background: #1b4727;
  border: 4px solid #f1df19;
  border-radius: 5px;
  margin: 20px 0px 0px 50px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
.review .google_review a img {
  margin-right: 10px;
}
.review .google_review a:hover {
  border: 4px solid #510269;
}

/* clint review start */
/* footer section start */
footer {
  background: var(--bg-color-gray);
}
footer .fooler-element img {
  width: 80px;
  height: 70px;
}
footer .fooler-element .logo-text {
  width: 160px;
}
footer .fooler-element p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: var(--text-color-main);
}
footer .fooler-element h3 {
  font-size: 28px;
  color: var(--bg-color-light);
  margin-bottom: 30PX;
}
footer .fooler-element h3 a {
  display: block;
  text-decoration: none;
  color: #ff6600;
}
footer .fooler-element ul li {
  color: var(--text-color-main);
  margin-top: 7px;
}

.footer-buttom {
  padding: 20px;
  text-align: center;
  background: var(--sec-color-main);
  color: var(--text-color-main);
}
.footer-buttom p {
  margin: 0;
}

/* footer section end */
/* back to top */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 30px;
  border: none;
  outline: none;
  background-color: #133572;
  color: #fff;
  cursor: pointer;
  padding: 0 12px;
  border-radius: 0;
  box-shadow: 0 0 4px 2px rgba(34, 34, 34, 0.1);
  transition: all 0.3s;
}

#myBtn:hover {
  background-color: #0c2146;
}

/* back to top */
/* new page */
/* contact page style start */
.contact_body {
  padding: 5rem 0;
}
.contact_body h3 {
  color: var(--bg-color-main);
}
.contact_body form input, .contact_body form textarea {
  padding: 10px 10px 10px 15px;
  border-radius: 0;
}
.contact_body form input:hover, .contact_body form textarea:hover {
  border-color: var(--bg-color-main);
}
.contact_body form label {
  color: #7a7878;
  font-size: 14px;
}
.contact_body form .form-group span {
  color: red;
}
.contact_body form .form-control {
  margin-bottom: 1rem;
  font-size: 14px;
}
.contact_body form .form-control:focus {
  box-shadow: none;
  border-color: var(--bg-color-main);
}
.contact_body form .form-controls {
  width: 100%;
  margin-bottom: 1rem;
  padding: 10px 10px 10px 15px;
  font-size: 14px;
  color: #7a7878;
}
.contact_body form button {
  background: var(--bg-color-main);
  border: none;
  border-radius: 0;
  padding: 15px 30px;
  font-weight: bold;
}
.contact_body address p {
  color: #7a7878;
}
.contact_body address b {
  min-width: 100px;
}
.contact_body address span {
  right: 5px;
}

.map {
  margin-bottom: -7px;
}

/* contact page style end */
/* comming page style start */
.containers {
  display: flex;
  row-gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
}

.containers .image {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.containers header {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.containers p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  max-width: 550px;
  text-align: center;
}

.containers .time-content {
  display: flex;
  column-gap: 30px;
  align-items: center;
}

.time-content .time {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.time .number,
.time .text {
  font-weight: 500;
  color: #fff;
}

.time .number {
  font-size: 40px;
}

.time .text {
  text-transform: capitalize;
  font-size: 12px;
}

/* comming page style end */

/*# sourceMappingURL=master.css.map */
