@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/***** General CSS *****/

/***** Font Files *****/

@font-face {
  font-family: "Dax Regular";
  src: url(../fonts/Dax\ Regular.ttf) format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Dax Medium";
  src: url(../fonts/Dax\ Medium.ttf) format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Dax Bold";
  /* src: url(../fonts/Dax\ Bold.otf.ttf) format("truetype"); */
  src: url(../fonts/Dax\ Bold.otf) format("opentype");
  font-weight: 700;
}

@font-face {
  font-family: "Dax light";
  src: url(../fonts/Dax\ Light.ttf) format("truetype");
}

body {
  word-break: break-word;
  font: 15px/25px;
  color: #393939;
  overflow-x: hidden;
  font-family: "Dax Regular";
}

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

/***** Custom Classes *****/

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

h1,
h2,
h3 h4 {
  font-family: "Dax Regular";
  line-height: 1.1;
  text-transform: capitalize;
}

h1 {
  font-size: 90px;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
}

p {
  font-family: "Dax light";
  font-size: 32px;
  line-height: 40px;
  color: #fff;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 17px;
  font-family: "Dax Regular";
  text-transform: capitalize;
  color: #fff;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  text-decoration: underline;
}

.menuSec ul a {
  position: relative;
  transition: transform 0.5s;
}

.menuSec ul a:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 1px;
  background: #fff;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0px auto;
  transition: 0.9s;
  cursor: pointer;
  opacity: 0;
}

.menuSec ul a:hover:before {
  opacity: 1;
  width: 100%;
}

.menuSec ul a:hover {
  transform: translate(0px, -2px);
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */
.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-caption {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  bottom: 110px;
}

/*banner css end*/

/* Custome Header css Start  */

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 12;
}

header .menuSec {
  position: relative;
}

header .menuSec .row {
  align-items: center;
  position: relative;
  padding: 10px 0 0px;
}

header .menuSec .others-contc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  height: 100px;
}

header .menuSec .others-contc .social {
  display: flex;
  gap: 20px;
  align-items: center;
}

header .menuSec .others-contc .ctc-header_phone {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menuSec ul li.lang a {
  text-decoration: underline;
}

header .menuSec .row:before {
  position: absolute;
  content: "";
  width: 109%;
  height: 1px;
  bottom: 0;
  background: #fff;
  left: -70px;
  margin: 0px;
}

header .menuSec .others-contc:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 84%;
  right: 0;
  left: -42px;
  background: #fff;
  margin: 0px auto;
  opacity: 50%;
  bottom: 0;
}

header .menuSec .others-contc .ctc-header_phone a i.fa-solid.fa-phone {
  transform: rotate(45deg);
}

header .menuSec .colLefts {
  position: relative;
}

header .menuSec .colLefts:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 110%;
  background: #fff;
  opacity: 50%;
  bottom: -14px;
  left: -17px;
}

/* Custome Header css End */

/* Baner Css start  */

section.main_slider {
  position: relative;
  overflow: hidden;
}

section.main_slider .banner_text {
  width: 65%;
}

section.main_slider .projects-wp {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  right: 0;
  bottom: -30px;
  width: 530px;
  padding-left: 12px;
  border-left: 1px solid #fff9;
}

section.main_slider .carousel-caption .row {
  position: relative;
}

section.main_slider img.img-fluid.bannerImg {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

section.main_slider .banner_text p {
  width: 78%;
  margin-bottom: 30px;
}

section.main_slider .projects-wp .proj-item1 {
  position: relative;
}

section.main_slider .projects-wp .proj-item1 img {
  width: 100%;
  filter: brightness(0.6);
  transition: 0.9s;
}

section.main_slider .projects-wp .proj-item1 h6 {
  position: absolute;
  bottom: 12%;
  left: 20px;
  width: 90px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  font-family: "Dax Regular";
  margin: 0;
}

section.main_slider .projects-wp .proj-item1 img:hover {
  filter: unset;
}

section.main_slider .projects-wp .proj-item2 {
  position: relative;
}

section.main_slider .projects-wp .proj-item2 .p-item_img {
  position: relative;
}

section.main_slider .projects-wp .proj-item2 .p-item_img img {
  width: 100%;
  position: relative;
}

section.main_slider .projects-wp .proj-item2 .p-item_img h6 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  font-family: "Dax Regular";
  width: 100px;
  position: absolute;
  top: 37%;
  left: 0;
  right: 0;
  margin: 0px auto;
  text-align: center;
}

section.main_slider .projects-wp .proj-item2 .p-item_img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #00000080;
  transition: 0.9s;
}

section.main_slider .projects-wp .proj-item2 .p-item_img:hover:before {
  background: #002853cc;
}

section.main_slider .banner_text .nav-links {
  width: 300px;
}

section.main_slider .projects-wp .proj-item2 .p-item_img h6 a {
  display: inline-block;
  transition: 0.9s;
}

section.main_slider .projects-wp .proj-item2 .p-item_img h6 a:hover {
  transform: translate(0px, 5px);
  opacity: 60%;
}

section.main_slider .banner_text .nav-links .link__1 {
  position: relative;
}

/* General css Some Round arrow Btn Wiht read more text link  */

.nav-links .link__1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 65px;
  transition: 0.9s;
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.nav-links .link__1 a i {
  transition: 0.9s;
}

.nav-links .link__1 a:hover i {
  transform: translate(20px, 0px);
  color: #fff;
}

section.main_slider .banner_text .nav-links .link__1 a:hover i {
  transform: translate(0px, 20px);
}

.nav-links .link__1 a:hover {
  background: #000;
}

.nav-links .link__2 a {
  text-transform: uppercase;
  transition: 0.9s;
  display: inline-block;
  font-family: "Dax light";
}

.nav-links .link__2 a:hover {
  text-decoration: underline;
}

/* General css Some Round arrow Btn Wiht read more text link  */

/* Baner Css end */

/* We Offer  css  */

section.offer {
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
  color: #fff;
}

section.offer .offer-bg_img {
  position: absolute;
  top: 0;
  object-fit: cover;
  width: 100%;
  z-index: -1;
  height: 100%;
  object-position: bottom;
}

section.offer .wraper_1 {
  position: relative;
}

section.offer .wraper_1 h2 {
  font-size: 50px;
  line-height: 1.3;
}

section.offer .wraper_2 {
  padding-top: 40%;
}

section.offer .text-offer {
  position: relative;
}

section.offer .text-offer p {
  font-size: 26px;
}

section.offer .wraper_2 .coleft {
  padding-right: 30px;
}

section.offer .wraper_2 .colRight {
  padding-left: 40px;
}

section.offer .wraper_2 .nav-links {
  margin-top: 30px;
}

/* We Offer  css  */

/* Services Listing  */

section.services {
  position: relative;
  overflow: hidden;
}

section.services ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0px;
}

section.services ul li {
  position: relative;
  width: 100%;
  height: 100%;
}

section.services ul li .ss-img {
  position: relative;
}

section.services ul li .ss-img img.img-fluid {
  height: 800px;
  width: 100%;
  /* transition: 0.9s; */
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease, object-position 0.5s ease;
}

section.services ul li .ss-img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0px auto;
  background: linear-gradient(128deg, #00204400 0%, #002044 100%);
  transition: 0.9s;
  opacity: 1;
}

section.services ul li:hover .ss-img:before {
  height: 0%;
}

section.services ul li:hover .ss-img img.img-fluid {
  transform: scaleX(1.1);
  filter: brightness(0.8);
}

section.services ul li .ss-text {
  position: absolute;
  bottom: 0;
  padding: 0px 20px 50px 30px;
  transition: 0.9s;
}

section.services ul li .ss-text h3 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.1;
}

section.services ul li .ss-text p {
  font-size: 19px;
  line-height: 28px;
}

section.services ul li:hover .ss-text {
  transform: translate(0px, 100%);
}

/* Services Listing */

/* Map Loaction  */

section.location {
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
}

section.location .location__bg_img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

section.location .location__bg_img img.img-fluid.laoction__bg {
  width: 100%;
  object-fit: fill;
  object-position: right;
  z-index: -1;
  position: relative;
}

section.location .location__bg_img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(116deg, #ffffff 44%, #5f5c5c00);
}

section.location .row {
  position: relative;
}

section.location .map-col h3 {
  position: relative;
  padding-bottom: 70px;
  color: #012044;
  padding-left: 40px;
}

section.location .locate-col {
  position: relative;
  padding-left: 20px;
}

section.location .locate-col h2 {
  color: #012044;
  font-size: 46px;
  margin-top: 3px;
  padding-bottom: 20px;
  line-height: 1.4;
}

section.location .locate-col p {
  color: #012044;
  font-size: 23px;
  line-height: 38px;
  width: 71%;
  font-family: "Dax Regular";
}

section.location .locate-col ul.d-flex {
  margin: 40px 0px 0px;
  flex-direction: column;
  gap: 20px;
}

section.location .locate-col ul.d-flex li.d-flex {
  align-items: center;
  gap: 20px;
}

section.location .locate-col ul.d-flex li.d-flex img.img-fluid {
  width: 20px;
  object-fit: fill;
  transition: 0.9s;
}

section.location .locate-col ul.d-flex li.d-flex span {
  color: #012044;
  font-size: 23px;
  line-height: 38px;
}
/* Map Loaction  */

/* People css  */

section.people {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

section.people .comted-img img {
  display: none;
}

section.people img.img-fluid.cmtd__people_bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: center;
}

section.people:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-image: url(../images/people-sec-gradient-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 5;
}

section.people:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  background-image: url(../images/pepole-sec-after-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 4;
  bottom: 0;
}

section.people .row {
  position: relative;
  z-index: 12;
}

section.people .coleft {
  position: relative;
}

section.people .comted-txt {
  position: relative;
}

section.people .comted-txt h2 {
  color: #fff;
  font-size: 50px;
  padding-bottom: 10px;
}

section.people .comted-txt p {
  font-size: 28px;
  line-height: 38px;
}

/* People css  */

/* Footer css  st*/

footer {
  background: linear-gradient(#103663, #0f4583);
  overflow: hidden;
  padding-top: 80px;
  margin-top: 20px;
  position: relative;
}

/* footer .ft-linkings {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
} */

footer .ft-linkings {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 85%;
  margin: 0px auto;
}

footer .ft-linkings .ft-cols.col_1 {
  width: 23%;
}

footer .ft_logo {
  position: relative;
  padding-right: 10px;
}

footer .ft_logo p.ft-logo-desc {
  font-size: 14px;
  line-height: 2.1;
  font-family: "Dax Regular";
}

footer .ft_logo .ft-logo_img img {
  margin-bottom: 60px;
  display: inline-block;
}

footer h5 {
  color: #fff;
  font-size: 16px;
  font-family: "Dax Bold";
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 14px;
}

footer .ft-navs {
  position: relative;
}

footer .ft-navs ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .ft-navs ul a {
  display: inline-block;
  font-size: 14px;
  transition: 0.2s;
  font-family: "Dax light";
}

footer .ft-navs ul li {
  list-style: disc !important;
  color: #fff;
}

footer .ft-navs ul li::marker {
  font-size: 10px;
}

footer .ft-navs ul a:hover {
  text-decoration: underline;
  filter: drop-shadow(0px 5px 6px black);
  transform: translate(0px, 1px);
}

footer .ft-copy {
  position: relative;
  padding: 30px 0 30px;
  margin-top: 40px;
}

footer .ft-copy:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #ff6200;
  top: 0;
}

footer .ft-copy p.m-0 {
  font-size: 14px;
  line-height: 24px;
}
/* Footer css ed */

/* Telecom st  */

section.telecom {
  position: relative;
  overflow: hidden;
}

section.telecom .slider-for .item .telecom-img {
  position: relative;
  transform: scale(1.08);
}

section.telecom .slider-for .item .telecom-img img {
  width: 100%;
  height: 850px;
  object-fit: cover;
  object-position: center;
}

section.telecom .slider-for .slick-track:before,
.slick-track:after {
  display: none;
}

section.telecom .nav-sliderWraper {
  width: 85%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0px auto;
}

section.telecom .nav-sliderWraper .slide-element {
  position: relative;
  transition: 0.9s;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0px 4px 20px 0px #4444449e;
  height: 280px;
  width: 100%;
}

section.telecom .nav-sliderWraper .element {
  opacity: 1;
  position: relative;
}

section.telecom .nav-sliderWraper .slide-element .element_txt {
  position: absolute;
  bottom: 0;
  padding: 0px 10px 20px 30px;
  width: 80%;
}

section.telecom .nav-sliderWraper .slide-element .element_txt h4 {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  position: relative;
  line-height: 39px;
}

section.telecom .nav-sliderWraper .slide-element:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0px auto;
  background: linear-gradient(128deg, #00204400 0%, #002044 100%);
  transition: 0.9s;
}

section.telecom .slider-for .item .telecom-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0px auto;
  background: linear-gradient(128deg, #00204400 0%, #002044 100%);
}

section.telecom .nav-sliderWraper .slide-element:hover {
  transform: scale(1.065);
}

section.telecom .nav-sliderWraper .slide-element:hover:before {
  background: linear-gradient(128deg, #00204400 0%, #000 100%);
}

section.telecom .slider-for .item .telecom-img .telecom-txt {
  position: absolute;
  top: 20%;
  left: 120px;
}

section.telecom .slider-for .item .telecom-img .telecom-txt h3 {
  color: #fff;
  font-size: 30px;
  font-family: "Dax light";
  margin-bottom: 30px;
}

section.telecom .slider-for .item .telecom-img .telecom-txt h2 {
  font-size: 80px;
  color: #fff;
  font-weight: 500;
  line-height: 0.99;
}

section.telecom .nav-sliderWraper .slick-list.draggable {
  padding: 0px !important;
}

/* Prev && Next  */

section.telecom .nav-sliderWraper .slick-prev:before {
  display: none;
}

section.telecom .nav-sliderWraper .slick-next:before {
  display: none;
}

section.telecom .nav-sliderWraper button.slick-prev.slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 45px;
  left: -60px;
  background-image: url(../images/prev-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.telecom .nav-sliderWraper button.slick-next.slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 45px;
  right: -60px;
  background-image: url(../images/next-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.telecom .nav-sliderWraper button.slick-next:hover {
  filter: drop-shadow(2px 10px 6px #fff);
  opacity: 50%;
}

section.telecom .nav-sliderWraper button.slick-prev:hover {
  filter: drop-shadow(2px 10px 6px #fff);
  opacity: 50%;
}
/* Telecom end */

section.video {
  position: relative;
  overflow: hidden;
  background: #fff;
}

section.video .container-fluid {
  padding: 0px;
}

section.video .video-wraper {
  position: relative;
  overflow: hidden;
}

section.video .video-wraper button#video-btn {
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0px auto;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 0px;
  outline: 1px solid #ffffff52;
  outline-offset: 17px;
  box-shadow: 0px 0px 20px 0px #ffffffd1;
  cursor: pointer;
  transition: 0.9s;
}

section.video .video-wraper button#video-btn .btn-pp {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
  margin: 0px auto;
  border-radius: 45px;
  background: #0940741f;
}

section.video .video-wraper button#video-btn .btn-pp i {
  color: #094074;
  font-size: 40px;
  text-align: center;
  transition: 0.9s;
}

section.video .video-wraper button#video-btn:hover {
  transform: scale(1.1);
  outline-offset: 0px;
  box-shadow: 0px 0px 20px 20px #ffffff40;
}

section.video .video-wraper button#video-btn:hover i {
  transform: rotateX(195deg) translate(4px, 0px);
}

/* =================== */

section.location .map_img {
  position: relative;
}

section.location .map_img .markor {
  display: inline-block;
  transition: 0.9s;
  position: relative;
}

section.location .map_img .markor img.img-fluid {
  width: 20px;
  object-fit: fill;
  transition: 0.9s;
}

section.location .map_img .markor .popup {
  background: #fff;
  box-sizing: border-box;
  box-shadow: -1px 0px 20px 1px #4444445e;
  border-radius: 3px;
  padding: 4px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 170px;
  z-index: -1;
  opacity: 0;
  transition: 0.9s;
  margin-top: -81px;
  margin-left: -70px;
}

section.location .map_img .markor .popup span {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  transition: 0.9s;
}

section.location .map_img .markor .popup:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  left: 0;
  right: 0px;
  z-index: 12;
  border-radius: 0px 0px 0px 40px;
  transform: rotate(137deg);
  margin: 0px auto;
  margin-top: 12px;
  box-shadow: 8px -12px 20px 1px #44444424;
  transition: 0.9s;
}

section.location .map_img .markor:hover .popup {
  z-index: 12;
  opacity: 1;
}

section.location .map_img .markorParent {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

section.location .map_img .markor:hover img.img-fluid {
  transform: rotateY(185deg) translate(0px, -10px);
  filter: drop-shadow(2px 54px 46px black);
}

/* map map map map map map map map map  */
/* mark mark mark mark mark mark mark mark mark */

section.location .map_img .markor.mark3 {
  position: absolute;
  top: 25%;
  left: 12%;
}

section.location .map_img .markor.mark4 {
  position: absolute;
  top: 17%;
  left: 10%;
}

section.location .map_img .markor.mark5 {
  position: absolute;
  top: 50%;
  display: inline-block;
  right: 20%;
}

section.location .map_img .markor.mark6 {
  position: absolute;
  top: 58%;
  display: inline-block;
  right: 45%;
}

section.location .map_img .markor.mark7 {
  position: absolute;
  top: 58%;
  display: inline-block;
  right: 50%;
}

section.location .map_img .markor.mark8 {
  position: absolute;
  top: 54%;
  display: inline-block;
  right: 41%;
}

section.location .map_img .markor.mark9 {
  position: absolute;
  top: 53%;
  display: inline-block;
  right: 32%;
}

section.location .map_img .markor.mark10 {
  position: absolute;
  top: 43%;
  display: inline-block;
  right: 32%;
}

section.location .map_img .markor.mark11 {
  position: absolute;
  top: 46%;
  display: inline-block;
  right: 42%;
}

section.location .map_img .markor.mark12 {
  position: absolute;
  top: 36%;
  display: inline-block;
  right: 53%;
}

section.location .map_img .markor.mark13 {
  position: absolute;
  top: 66%;
  display: inline-block;
  right: 27%;
}

section.location .map_img .markor.mark14 {
  position: absolute;
  top: 63%;
  display: inline-block;
  right: 30%;
}

section.location .map_img .markor.mark15 {
  position: absolute;
  top: 50%;
  display: inline-block;
  right: 30%;
}

section.location .map_img .markor.mark16 {
  position: absolute;
  top: 46%;
  display: inline-block;
  right: 29%;
}

section.location .map_img .markor.mark17 {
  position: absolute;
  top: 56%;
  display: inline-block;
  right: 39%;
}

section.location .map_img .markor.mark18 {
  position: absolute;
  top: 48%;
  display: inline-block;
  right: 36%;
}

section.location .map_img .markor.mark19 {
  position: absolute;
  top: 58%;
  display: inline-block;
  right: 42%;
}

section.location .map_img .markor.mark20 {
  position: absolute;
  top: 50%;
  display: inline-block;
  right: 23%;
}

section.location .map_img .markor.mark21 {
  position: absolute;
  top: 57%;
  display: inline-block;
  right: 30%;
}

section.location .map_img .markor.mark1 {
  position: absolute;
  top: 35%;
  display: inline-block;
  right: 17%;
}

section.location .map_img .markor.mark2 {
  position: absolute;
  top: 35%;
  display: inline-block;
  right: 30%;
}
/* mark mark mark mark mark mark mark mark mark */
/* map map map map map map map map map  */
