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

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

* {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  /* overflow-x: hidden; */
}

header {
  width: 100%;
  position: absolute;
  top: 14px;
  left: 0px;
  z-index: 999;
  transition: all 0.5s;
}

.sub_menu {
  width: 630px;
  position: absolute;
  top: 76px;
  left: 50%;
  right: AUTO;
  margin: AUTO;
  transform: translate(-50%, 0%);
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  padding: 15px 15px 20px;
  border-bottom: 2px solid #0075af;
  display: none;
}
.mn_menu ul li:hover .sub_menu {
  display: block;
}
.sub_menu_row {
  display: flex;
  flex-wrap: wrap;
}
.sub_menu_bx {
  width: 50%;
  padding: 0 5px;
}
.mn_menu ul li .sub_menu a {
  border-bottom: 1px solid #ccc;
  padding: 9px 0px;
  font-size: 14px;
  color: #010000;
}
.mn_menu ul li .sub_menu a:hover {
  color: #0075af;
}
.mn_menu ul li .sub_menu a:hover .fa {
  color: #0075af;
}
.sub_menu .fa {
  margin-top: 0;
  color: #010000;
  width: 26px;
  height: 26px;
  text-align: center;
  text-decoration: none;
  line-height: 27px;
  font-size: 16px;
}

nav ul li ul.sub-menu {
  display: block;
  position: absolute; 
  left: -185px;
  top: 100%;
  width: 560px;
  padding: 15px 0;
  margin: 0;
  z-index: 555;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  /* box-shadow: 0 0 20px 0 rgba(0,0,0,.1/); */
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  background: #fff;
  transition: visibility 0.25s, opacity 0.25s, -webkit-transform 0.25s;
  transition: visibility 0.25s, opacity 0.25s, transform 0.25s;
  transition: visibility 0.25s, opacity 0.25s, transform 0.25s,
    -webkit-transform 0.25s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  border-radius: 5px;
  border: 1px solid rgba(153, 153, 153, 0.36);
}
nav ul li:hover > ul.sub-menu {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  visibility: visible;
  opacity: 1;
}
.sub-menu:before {
  content: "";
  position: absolute;
  top: -18px;
  left: 185px;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(-45deg) translateY(1rem);
  -ms-transform: rotate(-45deg) translateY(1rem);
  transform: rotate(-45deg) translateY(1rem);
  border-radius: 3px;
  background: #fff;
  box-shadow: none;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
}
nav ul.sub-menu li {
  float: left;
  width: 50% !important;
  margin: 0px 0px !important;
  padding: 4px 14px;
}

nav ul li ul.sub-menu img {
  height: 20px;
  filter: invert(10);
}
nav ul li ul.sub-menu span {
  height: 32px;
  width: 32px;
  display: inline-block;
  background: #0074ac;
  padding: 5px;
  border-radius: 50px;
  margin-right: 12px;
}

#main-menu ul li .sub-menu li a {
  padding: 5px 0px;
  font-size: 14px;
  color: #010000;
  transition: 0.5s all ease;
}
#main-menu ul li .sub-menu li:hover a {
  color: #f6971b;
  transition: 0.5s all ease;
}

#main-menu ul li .fa {
  margin-top: 0px;
  color: #ffffff;
  width: 32px;
  height: 32px;
  text-align: center;
  text-decoration: none;
  line-height: 27px;
  font-size: 14px;
  background: #0074ac;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.5s all ease;
  border: 2px solid #0074ac;
}
#main-menu ul li .sub-menu li:hover .fa {
  color: #fff;
  transition: 0.5s all ease;
  background: #f6971b;
  border: 2px solid #ee8b0a;
}
#main-menu ul li .sub-menu li:hover span {
  /* transition: 0.5s all ease; */
  background: #f6971b;
  /* border: 2px solid #ee8b0a; */
}

/* Preloader */
.spinner {
  --size: 30px;
  --first-block-clr: #005bba;
  --second-block-clr: #fed500;
  --clr: #111;
  width: 100px;
  height: 100px;
  position: relative;
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 1;
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.spinner::after,
.spinner::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  left: 50%;
  background: #005bba;
}

.spinner::after {
  background: #fed500;
  top: calc(50% - var(--size));
  left: calc(50% - var(--size));
  -webkit-animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
  animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
}

@-webkit-keyframes down {
  0%,
  100% {
    -webkit-transform: none;
    transform: none;
  }

  25% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }

  75% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes down {
  0%,
  100% {
    -webkit-transform: none;
    transform: none;
  }

  25% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    -webkit-transform: translateX(100%) translateY(100%);
    transform: translateX(100%) translateY(100%);
  }

  75% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@-webkit-keyframes up {
  0%,
  100% {
    -webkit-transform: none;
    transform: none;
  }

  25% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }

  75% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes up {
  0%,
  100% {
    -webkit-transform: none;
    transform: none;
  }

  25% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%);
  }

  75% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@media (max-width: 991px) {
  nav ul li ul.sub-menu {
    display: none;
    position: static;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 555;
    opacity: 1;
    visibility: visible;
    text-align: left;
    box-shadow: none;
    background: #fff;
    /* transition: visibility 0.25s, opacity 0.25s, transform 0.25s; */
    transform: inherit;
    border-radius: 0;
    border: none;
    padding-left: 22px;
    padding-bottom: 20px;
    /* transition: 0.5s ease; */
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .sub-menu.show {
    display: block;
  }
  nav ul.sub-menu li {
    float: none;
    width: 100% !important;
    margin: 0px 0px !important;
    padding: 0px 0;
  }
  nav ul.sub-menu li a {
    font-size: 14px !important ;
  }
  .sub-menu:before {
    display: none;
  }
  .mn_menu ul li {
    padding-bottom: 0;
    padding-top: 0;
  }
  #main-menu ul li .fa {
    display: none;
  }
  /* #main-menu ul li span {
    display: none;
  } */
  nav ul li ul.sub-menu span {
    display: none;
  }
}

.nav {
  align-items: center;
}
.btn-cta .nav-link {
  background: #0056b3;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 5px;
}

.abt_section p {
  font-size: 16px;
  color: #020617;
  line-height: 1.6;
  text-align: justify;
  font-weight: 500;
  margin-bottom: 15px;
}
figure {
  margin: 0 !important;
}

.PoroClickBTn i {
  margin-left: 0;
}
html {
  font-size: 14px;
}
body {
  font-family: "ralewaymedium" !important;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #666;
  line-height: 25px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* font-family: 'Poppins', sans-serif; */
}

.navbar {
  padding: 0px;
}
.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-inline .nav-item {
  display: inline-block;
}

.navbar li {
  color: #666;
  display: inline-block;
  margin: 0 13px !important;
  position: relative;
  padding-bottom: 0px;
  padding-top: 0px;
}

/* #main-menu .nav-link.active {
  color: #005680;
  color: #00acff;
} */

#main-menu ul > li > a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all ease;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 0px;
  padding-top: 0;
}
.Fixed_header #main-menu ul > li > a {
  color: #3a3a3a;
}
#main-menu > ul > li > a:hover {
  color: #00e1d4 !important;
}
.nav-inline .nav-item + .nav-item {
  margin-left: 0px;
}
.top_search .top_search_con {
  background: #fff;
  border: 1px solid #e4e4e4 !important;
  height: 38px;
  border-radius: 50px;
  position: relative;
  width: 100%;
}
.clearfix::after {
  display: table;
  clear: both;
  content: "";
}
.top_search .top_search_con input[type="text"],
.top_search .top_search_con input:focus {
  background: none !important;
  border: medium none;
  height: 100%;
  width: 100%;
  padding: 1px 20px 0 40px;
  color: #818b8d;
  font-size: 12px;
  outline: none;
}
.top_search .top_search_icon {
  font-size: 14px;
  left: 15px;
  position: absolute;
  top: 4px;
}
div#main-menu {
  display: flex !important;
  align-items: center;
}
.top_search .top_search_icon {
  color: #005680;
}
.icon-magnifier:before {
  content: "\e090";
}
.top_search .top_search_submit {
  border: medium none;
  padding: 0;
  position: absolute;
  width: 20px;
  left: 12px;
  opacity: 0;
  top: 9px;
}
.full-search {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #333;
  padding: 15px 0;
  z-index: 999;
}
.full-search input[type="text"] {
  outline: medium none;
  display: inline-block;
  width: 97%;
  background: transparent;
  color: #fff;
  font-size: 28px;
  padding: 4px 16px 8px;
  line-height: 39px;
  border-radius: 3px;
  height: auto;
  border: 1px solid #444;
}

h1,
h2,
h3,
h4 {
  font-family: "ralewaymedium";
  font-weight: 600;
}
.btn-common {
  background: #005680 none repeat scroll 0 0;
}
.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}
.cMobileMenuSeparator {
  margin: 0;
  padding: 0;
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  nav.navbar.navbar-light button.navbar-toggler {
    background: #005680 none repeat scroll 0 0;
    border-radius: 0 !important;
    margin-top: 25px;
    color: #fff !important;
  }
  #main-menu {
    clear: both;
    width: 100%;
  }
  .navbar-toggler {
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: 0 0;
    border: 1px solid transparent;
    border-radius: 0.25rem;
  }
  nav.navbar.navbar-light ul.nav-inline {
    max-height: 95%;
    overflow-y: scroll;
    margin-top: 40px;
    display: block;
  }
  nav.navbar.navbar-light ul.nav-inline .nav-item {
    display: block;
    padding: 0px;
  }
  nav.navbar.navbar-light ul.nav-inline .nav-item {
    display: block;
  }

  nav.navbar.navbar-light ul.nav-inline .btn-cta {
    width: fit-content;
    margin-left: 10px !important;
    border-radius: 10px;
  }
  .btn-cta .nav-link {
    border-radius: 10px;
    /* padding-left: !important; */
  }

  .nav-inline .nav-item + .nav-item {
    margin-left: 0;
    float: none;
  }
  #main-menu ul > li > a {
    margin: 15px 10px;
  }
  .cMobileMenuSeparator {
    display: block;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #main-menu ul > li > a {
    padding: 28px 16px 28px 0;
  }
  .top_search .top_search_con {
    width: 140px;
  }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  #main-menu ul > li > a {
    padding: 28px 16px 28px 0;
  }
  .top_search .top_search_con {
    width: 140px;
  }
}
body .sticky-top {
  top: 65px;
}
body .navbar {
  padding: 0;
}
.header_in {
  padding-top: 0px;
  padding-bottom: 0px;
  transition: 0.5s all ease;
  align-items: center;
  padding-right: 50px;
  padding-left: 50px;
  width: 100%;
}
.Fixed_header .header_in {
  transition: 0.5s all ease;
}
.meniRt {
  margin-right: 37px;
}
.Fixed_header {
  /* border-bottom: 1px solid #e1e0de; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  background: #fff;
  z-index: 999999;
  top: 0;
}
.logo {
  float: left;
  transition: 0.5s;
  position: relative;
  top: 0px;
  margin: 0 !important;
}
.Fixed_header .navbar-brand {
  width: 75px;
  display: block;
  transition: 0.5s all ease;
}
body .container {
  width: 100%;
  max-width: 1280px;
  width: 100%;
}
.scrollLogoshow {
  display: none;
}

.Fixed_header .scrollLogoshow {
  display: block;
}
.hdr_loginbx {
  text-align: right;
  padding-right: 0px;
  transition: 0.5s;
  padding-top: 0px;
  display: flex;
}
.mn_menu {
  display: flex;
}
a.logo img {
  width: 100%;
  width: 80%;
  transition: 0.5s all ease;
}
.Fixed_header a.logo img {
  transition: 0.5s all ease;
  width: 100%;
}
.mn_menu ul li {
  display: inline-block;
  margin: 0 13px;
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
}
/*.mn_menu ul li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width:0;
    height: 2px;
    background: #ba111a;
    content: "";
    transition: 0.5s all ease;
    transition: 0.5s all ease;
}*/
.hdr_number {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 24px;
  transition: 0.5s all ease;
}
.hdr_number i.fa.fa-phone {
  width: 36px;
  height: 36px;
  background: #fff;
  color: #3051a0;
  border-radius: 50%;
  display: inline-block;
  float: left;
  margin: -6px 10px 0 0;
  text-align: center;
  line-height: 38px;
  font-size: 22px;
  transition: 0.5s all ease;
}
.Fixed_header .hdr_number {
  color: #3051a0;
  transition: 0.5s all ease;
}
.Fixed_header .hdr_number:hover {
  color: #ed3238;
  transition: 0.5s all ease;
}
.Fixed_header .hdr_number i.fa.fa-phone {
  background: #ed3238;
  color: #fff;
}
.mn_menu ul li:hover a:before {
  width: 100%;
  transition: 0.5s all ease;
  background: #ba111a;
}
/*.mn_menu ul li a.active:before {
    width: 100%;
    transition: 0.5s all ease;
}*/

.mn_menu ul li a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all ease;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  padding-left: 3px;
  padding-right: 3px;
  padding-bottom: 7px;
  padding-top: 0;
}

.mn_menu ul li a:hover {
  color: #3051a0;
  transition: 0.5s all ease;
}
.Fixed_header .mn_menu ul li a {
  color: #010000;
}
.Fixed_header .mn_menu > ul > li:hover > a {
  color: #3051a0;
}
.mn_menu ul li a.active {
  color: #3051a0;
}
/*.mn_menu ul li a.active {
    color: #3051a0;
}*/
.mn_menu .logo {
  display: none;
}

.menu_icon {
  display: none;
}

.banner {
  margin-top: 0px;
  width: 100%;
  position: relative;
  /* min-height: 80vh; */
  /* background: #015482; */
  /* min-height: 80vh; */
}

.hero-section {
  min-height: 80vh;
  background: #0e1922;
  position: relative;
}

.bnrTx {
  position: absolute;
  top: 58%;
  left: 0;
  width: 100%;
  align-items: center;
  transform: translateY(-50%);
  z-index: 9;
  height: 20%;
}

.navbar {
  padding: 0;
}
.bnr_hd_sm {
  font-size: 20px;
  color: #f9be2b;
  margin: 0 0 16px 0;
  font-weight: 500;
}
h1.bnr_hd_lg {
  font-size: 52px;
  line-height: 61px;
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  font-family: "Helvetica";
}
h1.bnr_hd_lg:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  height: 10px;
  background: #005985;
  content: "";
  width: 85%;
  z-index: -1;
}
.BnrLt {
  max-width: 560px;
}
.BnrLt p {
  font-size: 20px;
  color: #fff;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
}

.bnr_lctn {
  display: inline-block;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #991d1f;
  padding: 5px 13px 4px 13px;
  transition: 0.5s all ease;
  line-height: 22px;
}

.bnr_lctn i {
  display: inline-block;
  font-size: 19px;
  float: left;
  margin: 2px 6px 0 0;
}
.bnr_lctn:hover {
  background: #991d1f;
  color: #fff;
  transition: 0.5s all ease;
}
.BnrIn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 50px;
}

.bnr_h3 {
  font-weight: bolder;
  letter-spacing: 0.1px;
  color: #fff;
  font-size: 36px;
  text-transform: capitalize;
  line-height: 1.4;
  font-family: "Helvetica";
}

/*.BnrLt {

    -webkit-animation: fa-spin 20s infinite alternate;
    -moz-animation: fa-spin 20s infinite alternate;
    -ms-animation: fa-spin 20s infinite alternate;
    -o-animation: fa-spin 10s infinite alternate;
    animation: fa-spin 10s infinite alternate;
}*/
.btn_div {
  margin-top: 30px;
}

.btn_div div {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  background: #0056b3;
  padding: 5px 15px;
  border: 0px;
  border-radius: 3px;
  margin-top: 3px;
  margin-bottom: 25px;
  cursor: pointer;
}
.btn_1 {
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  background: #f6971b;
  padding: 9px 30px 9px 30px;
  color: #fff !important;
  border-radius: 5px;
  transition: 0.5s all ease;
  font-weight: 500;
}
.skyp {
  margin-left: 15px;
  transition: 0.5s all ease;
}
.skyp:hover {
  opacity: 0.5;
  transition: 0.5s all ease;
}
.btn_1:hover {
  background: #0075ae;
  color: #fff;
  transition: 0.5s all ease;
}
.btn_icon {
  width: auto !important;
  display: inline-block !important;
  float: right;
  margin: 4px 0 0 10px;
}

.why_chooseus_bx {
  background: #fff;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 26%);
  border-radius: 15px;
  overflow: hidden;
  padding: 40px 25px 35px 35px;
  position: relative;
}
.why_chooseus_bx:before {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: #095cbb;
  content: "";
  border-radius: 50%;
}

.why_chooseus_bg {
  position: relative;
  margin-bottom: 40px;
  padding: 0 15px;
}
.why_chooseus_cl4 {
  padding-top: 200px;
}
.why_chooseus_cl1 {
  margin-top: 140px;
}
.why_chooseus_bg:after {
  position: absolute;
  top: -23px;
  right: -40px;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/why_chooseus_bg.png) no-repeat top right;
  z-index: -1;
}
.why_chooseus_bx p {
  font-size: 16px;
  color: #999999;
  line-height: 28px;
  font-weight: 4;
  margin-bottom: 15px;
}
.why_chooseus_bx .read-more {
  margin-bottom: 0px;
}
.why_chooseus_bx .read-more a {
  color: #0056b3;
  font-size: 15px;
}

.why_chooseus_hd {
  font-size: 22px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 15px 0;
  line-height: 30px;
}
.why_chooseus_bx figure {
  margin-bottom: 18px !important;
}

.why_chooseus_cl {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
.why_chooseus_cl1 .why_chooseus_bg {
  margin-top: 90px;
}
.why_chooseus_cl2 .why_chooseus_bg:after {
  right: -28px;
}
.why_chooseus_cl3:after {
  top: inherit;
  bottom: -72px;
}
.why_chooseus_cl4 .why_chooseus_bg:after {
  top: -24px;
  right: -24px;
}
.why_chooseus_Row {
  align-items: center;
  position: relative;
}
.why_chooseus_Row {
  align-items: center;
  position: relative;
}
.why_chooseus .container {
  position: relative;
}
.why_chooseus .container:before {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/why_chooseus_img.png) no-repeat center center;
  background-size: 100%;
  content: "";
  opacity: 0.1;
}

.LgcCounter,
.LgcCounterbx span {
  font-size: 180px;
  line-height: 150px;
  color: #095cbb;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}
.LgcCounterbx2 .LgcCounter,
.LgcCounterbx2 span {
  font-size: 100px;
  line-height: 80px;
}
.LgcCounterbx3 .LgcCounter,
.LgcCounterbx3 span {
  font-size: 100px;
  line-height: 80px;
}
.CounterDiv {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 35px;
}
.LgcCounterbx p {
  color: #1c1c1c;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin: 6px 0 0 0;
}
.logoscroll {
  display: none !important;
}
.Fixed_header .logodest {
  display: none !important;
}

.Fixed_header .logoscroll {
  display: block !important;
}
.LgcCounterbx {
  width: 520px;
  /* opacity: 0;
    transition: all 2s ease 0s;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: scale(.1, .1);
    -webkit-transform: scale(.1, .1);
    -moz-transform: scale(.1, .1);
    -ms-transform: scale(.1, .1);
    -o-transform: scale(.1, .1);
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;*/
}
/*.LgcCounterbx {
    opacity: 1;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}*/

.LgcCounterbx2 {
  width: 480px;
  padding-left: 32px;
}

.LgcCounterbx3 {
  width: 200px;
}
.Products_tx {
  text-align: right;
  padding-right: 60px;
}
.coreFeatr {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 99;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 50px;
}
.coreFeatrbx h2 {
  font-size: 56px;
  line-height: 45px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: "Helvetica";
}
.coreFeatr_in {
  margin-top: 30px;
}
.coreFeatrbx p {
  font-size: 18px;
  color: #020617;
  line-height: 21px;
  font-weight: 600;
  margin-bottom: 0;
  position: relative;
  z-index: 99;
  /* font-family: 'Helvetica'; */
}
/* .coreFeatrbx:first-child.active:after {
    height: 50px;
    position: absolute;
    left: -1px;
    bottom: -23px;
    width: 1px;
    background: #dcdcdc;
    content: "";
    z-index: 9;
} */
.coreFeatrbx:last-child.active:after {
  height: 50px;
  position: absolute;
  right: -1px;
  bottom: -23px;
  width: 1px;
  background: #dcdcdc;
  content: "";
  z-index: 9;
}
.coreFeatrbx {
  display: inline-block;
  padding: 30px 15px 31px 15px;
  border-radius: 10px;
  border-bottom: 0px solid #dcdcdc;
  cursor: pointer;
  border: none;
  border: 1px solid transparent;
  width: 16.6%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.featuresCL_MO {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.featuresCL_MO img {
  width: 40px;
}

.coreFeatrbx.active .featuresCL_MO img {
  /* filter: brightness(10) invert(0); */
  filter: invert(10);
  pointer-events: none;
}

.coreFeatrbx.active .featuresCL_MO .web-icon {
  filter: brightness(10) invert(0);
  pointer-events: none;
}

.coreFeatrbx.active {
  /* box-shadow: 0px 0px 36px #ecebeb; */
  /* border: 1px solid #dcdcdc; */
  border-radius: 10px;
  /* border-bottom: 0px solid #dcdcdc; */
  position: relative;
  background: #0082c2;
}

.coreFeatrbx.active p {
  color: #fff;
}

.coreFeatrbx.active:before {
  position: absolute;
  bottom: -37px;
  left: 0;
  width: 100%;
  height: 79px;
  background: #fff;
  content: "";
  z-index: 9;
  display: none;
}
.coreFeatrShow_tx h3 {
  font-size: 25px;
  line-height: 30px;
  color: #095cbb;
  margin-bottom: 16px;
  font-weight: 700;
}
.coreFeatrShow_tx p {
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}
.coreFeatrbx.active h2,
.coreFeatrbx.active p {
  color: #fff !important;
}

.coreFeatrShow_bx span {
  width: 43%;
  display: inline-block;
}
.coreFeatrShow_bx {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 30px 40px 35px;
  box-shadow: 0px 0px 36px #ecebeb;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
}

.coreFeatrShow_bx img {
  max-width: 100%;
}
.coreFeatrShow {
  margin-top: 0px;
}
.coreFeatrShow_tx {
  width: 57%;
  padding-left: 50px;
  padding-top: 50px;
}
.strest_bx_tx {
  margin-top: 20px;
}
.strest_bx h1 {
  font-size: 25px;
  line-height: 30px;
  color: #000;
  margin-bottom: 6px;
  font-weight: bold;
}
.strest_bx p {
  font-size: 20px;
  color: #666666;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
}
.strest_bx_img {
  overflow: hidden;
  position: relative;
}
.strest_bx_img img {
  /* filter: grayscale(100); */
  /* -webkit-filter: grayscale(100); */
  /* transition: 0.1s all ease; */
}
.strest_bx {
  transition: 0.1s all ease;
  text-align: center;
  margin-bottom: 20px;
}
.strest_bx:hover .strest_bx_img img {
  /* filter: grayscale(0); */
  /* -webkit-filter: grayscale(0); */
  /* transition: 0.1s all ease; */
}
.text-center {
  text-align: center !important;
}
.w-100 {
  width: 100% !important;
}
.strest_hvr_tx {
  background: #fff;
  position: absolute;
  bottom: -100%;
  transition: 0.5s all ease;
  left: 2%;
  width: 96%;
  padding: 8px 15px 8px 15px;
}
.strest_bx:hover .strest_hvr_tx {
  bottom: 0;
  transition: 0.5s all ease;
}
.strest_hvr_tx p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
  margin: 0;
}
.strestRow {
  margin-top: 35px;
  justify-content: center;
}
.clientsSay_img {
  display: inline-block;
  padding: 10px;
  background: #f3f3f3;
  border-radius: 50%;
  width: 113px;
  margin-bottom: 10px;
}
.clientsSay_tx {
  width: 79%;
  padding-left: 20px;
}
.clientsSay_in {
  display: flex;
  background: #fff;
  padding: 30px 30px 30px 35px;
  box-shadow: 0px 0px 36px rgb(236 235 235 / 45%);
  border-radius: 25px;
  flex-wrap: wrap;
  align-items: flex-start;
  min-height: 235px;
}
.clientsSay_arrow2 img {
  max-width: 69px;
}
.clientsSay_arrow2 {
  position: absolute;
  top: 27px;
  left: 7px;
}
/*.clientsSay_in:before {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: #095cbb;
    content: "";
    border-radius: 50%;
}*/
.clientsSay_img img {
  border-radius: 50%;
  border: 10px solid #dbdbdb;
  width: 95px;
  height: 95px;
}
.clientsSay_tx h5 {
  font-size: 15px;
  line-height: 21px;
  color: #0082c2;
  font-weight: 400;
  margin-bottom: 8px;
}
.clientsSay_tx p {
  font-size: 15px;
  color: #8b8b8b;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.clientsSay_tx h6 {
  font-size: 15px;
  color: #dc0000;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 0;
}
.clientsSay_arrow img {
  width: auto !important;
  display: inline-block !important;
}
.clientsSay_arrow {
  position: absolute;
  top: 15px;
  right: 25px;
}
.clientsSay {
  background: url(../images/clientsSay_bg.jpg) no-repeat center center;
  background-size: cover;
}
.clientsSay .item {
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
}
.clientsSay .owl-item {
}
.clientsSay_Sl .owl-dot {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background: #e0e0e0;
  margin: 0 3px;
  border: none;
  box-shadow: none;
  outline: none !important;
}
.clientsSay_Sl .owl-dot.active {
  background: #0082c2;
}
.clientsSay_Sl .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.ourbussines_lt h1 {
  font-size: 40px;
  line-height: 45px;
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
}
.ourbussines_in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ourbussines_lt {
  width: 215px;
}

.ourbussines {
  padding: 70px 0;
}
.ourbussines_Rt {
  display: flex;
  flex-wrap: wrap;
  padding: 55px 30px 55px 35px;
  box-shadow: 0px 0px 36px #ecebeb;
  border-radius: 10px;
  width: 82%;
  position: relative;
  overflow: hidden;
}
.ourbussines_Rt:before {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: #095cbb;
  content: "";
  border-radius: 50%;
  z-index: 99;
}
#ourbussines_Sl .owl-pagination {
  display: none;
}
.ourbussines_Sl {
  display: flex;
  flex-wrap: wrap;
}
.cl_logo {
  display: block;
  text-align: center;
  position: relative;
}
.cl_logo img {
  display: inline-block !important;
  max-width: 100%;
  max-height: 130px;
}
.ourbussines_Sl .owl-stage {
  display: flex;
  align-items: center;
}
.ourbussines_Sl:before {
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  background: #fff;
  content: "";
  width: 5px;
  z-index: 99;
}
.ourbussines_Sl .item {
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.ourbussines_Sl .item:before {
  background: #e5e5e5;
  height: 100%;
  width: 2px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
.fit_top {
  background: url(../images/footer_tp_bg.jpg) no-repeat center center;
  background-size: cover;
}

.fit_topin h4 {
  font-size: 24px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 400;
}
.fit_topin p {
  font-size: 15px;
  color: #fff;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  font-family: 'Montserrat', sans-serif;

}
.fit_topin p span {
  display: flex;
  margin-right: 15px;
}

.fit_topin address {
  display: flex;
  align-items: start;
  gap: 20px;
}

.fit_top_bx {
  width: 255px;
}
.fit_top_bx4 {
  width: 32%;
}
.fit_topin {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 25px;
  align-items: center;
}

/*Footer*/

.footerdiv {
  padding: 50px 0;
  background: url(../images/footer_bg.jpg) no-repeat center center;
  background-size: cover;
}

.ftr_bx h5 {
  font-size: 19px;
  line-height: 26px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 16px;
}
.ftr_bx ul li {
  display: block;
  margin-bottom: 5px;
}

.ftr_bx .socialas li {
  margin-right: 20px;
}

.ftr_bx .socialas li a i {
  font-size: 21px;
}
.ftr_bx .socialas li a i:hover,
.ftr_bx .socialas li a i:active {
  color: #0056b3;
}




.ftr_bx ul li a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  display: block;
}
.ftr_bx2 ul li a {
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  display: block;
}
.ftr_bx2 ul {
  width: 50%;
  float: left;
}
.ftr_bx1 {
  /* width: 188px; */
}
.ftr_bx2 {
  /* width: 345px; */
}

.ftr_bx3 {
  /* width: 230px; */
}
.ftr_bx4 {
  padding-right: 50px;
}
.ftr_in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.ftr_2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e0e1e5;
  margin-top: 45px;
  padding-top: 40px;
}
.ftr_2 li {
  margin: 0 17px;
}
.ftr_2 a {
  display: inline-block;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  font-weight: 500;
}
.ftr_2 a i {
  font-size: 23px;
  display: inline-block;
  margin-right: 6px;
  float: left;
  margin: -1px 7px 0 0;
}
footer a {
  transition: 0.5s all ease;
}
footer a:hover {
  color: #2250e3 !important;
  transition: 0.5s all ease;
}
footer p {
  font-size: 15px;
  color: #000000;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}

.ftrSocial {
  margin-top: 20px;
}

.d-none {
  display: none !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

/*Mazic css*/
.case_wrapper {
  width: 100%;
}
.case_container {
  position: relative;
  width: 100%;
  padding: 70px 0 0;
}
.case_wrapper.android-case.melltoo-full-case .case-slides {
  width: 100%;
}
.full-slide-wrapper {
  display: flex;
  height: 520px;
}
.full-wrap-slide.melltoo-full-case .full-slide-left {
  background-color: #095cbb;
}
.fullIMgBx {
  margin-top: -30px;
  position: relative;
  z-index: 99;
}
.full-slide-left {
  width: 51%;
  position: relative;
  z-index: 99;
}
.case_wrapper .slick-list {
  padding-top: 30px;
}
.full-slide-right {
  width: 49%;
  background: url(../images/full-slide-rightBG.jpg) no-repeat center center;
  background-size: cover;
  padding-left: 122px;
}
.FullSlRTImg1 img {
  max-width: 450px;
}
.full-slide-right img {
  width: 100%;
}
.circle-dial {
  position: relative;
  margin: 40px -130px 0 0;
  height: 495px;
}
.circle-dial:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: #095cbb;
}
.circle-dial:after {
  content: "";
  width: 350px;
  height: 350px;
  background-image: url(../images/Circle-Outline.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 24px;
  right: 4px;
  width: 250px;
  height: 250px;
  right: 6px;
}
.dial-heading {
  position: absolute;
  z-index: 4;
  width: 100%;
  right: 0;
  top: 40%;
  transform: translate(0, -50%);
  transform: translate(0, -100%);
  text-align: right;
  padding-right: 202px;
  overflow: hidden;
}
.dial-heading .dial-prefix {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  /*animation: 1s .2s fadeInDown both;*/
}
.dial-heading h5,
.dial-lg-head {
  color: #fff;
  font-size: 60px;
  line-height: 70px;
  font-weight: 600;
}
.dial-heading .dial-suffix {
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  text-align: right;
}
.full-slide-bottom {
  width: 540px;
  position: absolute;
  top: 280px;
  right: 40px;
}
.full-slide-bottom h4,
.full-slide-heading {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 18px;
  font-weight: 600;
}
.full-slide-bottom p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 60px;
}
.MoreDetails {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  width: 160px;
  color: #fff !important;
  outline: none !important;
}
.MoreDetails img {
  display: inline-block;
  margin-left: 15px;
}
.skip_tx {
  font-size: 15px;
  line-height: 24px;
  color: #fff !important;
  outline: none !important;
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  bottom: -25px;
  right: 0;
}

.case_wrapper ul.slick-dots {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 100%;
  text-align: center;
  display: flex;
  width: 20px;
  flex-wrap: wrap;
  transform: translateY(-50%);
  bottom: inherit !important;
}
.case_wrapper .slick-dots li {
  margin: 8px 0;
  padding: 0;
  position: relative;
  outline: none;
  width: auto;
  height: auto;
}
.case_wrapper .slick-dots li button {
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 50%;
  margin: 3px;
  font-size: 0px;
  padding: 2px;
  position: relative;
  outline: none;
}
.case_wrapper .slick-dots li.slick-active button:before {
  width: 9px;
  height: 9px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  content: "";
}

/* ==== Slider Style === */

/*Slider item 1 Animates css*/
.slick-active .Title_1 {
  /*animation:ProgressDots 11s both;*/
  -webkit-animation: fadeInDown 1s both 1s;
  animation: fadeInDown 1s both 1s;
}
.slick-active .Title_2 {
  -webkit-animation: fadeInUp 2s both 1s;
  animation: fadeInUp 2s both 1s;
}
.slick-active .Title_3 {
  -webkit-animation: fadeInDown 2s both 1s;
  animation: fadeInDown 2s both 1s;
}
.slick-active .Title_4 {
  -webkit-animation: fadeInUp 2s both 1s;
  animation: fadeInUp 2s both 1s;
}
.slick-active .Title_5 {
  -webkit-animation: fadeInDown 2s both 1s;
  animation: fadeInDown 2s both 1s;
}
.slick-active .Title_6 {
  /*-webkit-animation: fadeInDown 2s both 1s;
    animation: fadeInDown 2s both 1s;*/
  animation: ProgressDots 5s both;
  /*animation:fadeInRight 1s both;*/
}

/*Slider item 2 Animates css*/
.slick-active .Title__2_1 {
  /*animation:ProgressDots 11s both;*/
  -webkit-animation: fadeInDown 1s both 1s;
  animation: fadeInDown 1s both 1s;
}
.slick-active .Title__2_2 {
  -webkit-animation: fadeInUp 2s both 1s;
  animation: fadeInUp 2s both 1s;
}
.slick-active .Title__2_3 {
  -webkit-animation: fadeInDown 2s both 1s;
  animation: fadeInDown 2s both 1s;
}
.slick-active .Title__2_4 {
  -webkit-animation: fadeInUp 2s both 1s;
  animation: fadeInUp 2s both 1s;
}
.slick-active .Title__2_5 {
  -webkit-animation: fadeInDown 2s both 1s;
  animation: fadeInDown 2s both 1s;
}
.slick-active .Title__2_6 {
  /*-webkit-animation: fadeInDown 2s both 1s;
    animation: fadeInDown 2s both 1s;*/
  animation: fadeInRight 5s both;
  /*animation:fadeInRight 1s both;*/
}
.full-slide-right2 img {
  max-width: 100%;
}
.full-slide-right2 .fullIMgBx {
  margin-top: 20px;
}

/*Slider item 2 Animates css*/
.slick-active .Title__2_1 {
  /*animation:ProgressDots 11s both;*/
  -webkit-animation: fadeInDown 1s both 1s;
  animation: fadeInDown 1s both 1s;
}
.slick-active .Title__2_2 {
  -webkit-animation: fadeInUp 2s both 1s;
  animation: fadeInUp 2s both 1s;
}
.slick-active .Title__2_3 {
  -webkit-animation: fadeInDown 2s both 1s;
  animation: fadeInDown 2s both 1s;
}
.slick-active .Title__2_4 {
  -webkit-animation: fadeInUp 2s both 1s;
  animation: fadeInUp 2s both 1s;
}
.slick-active .Title__2_5 {
  -webkit-animation: fadeInDown 2s both 1s;
  animation: fadeInDown 2s both 1s;
}
.slick-active .Title__2_6 {
  /*-webkit-animation: fadeInDown 2s both 1s;
    animation: fadeInDown 2s both 1s;*/
  animation: fadeInRight 5s both;
  /*animation:fadeInRight 1s both;*/
}
.full-slide-right3 img {
  max-width: 100%;
}
.full-slide-right3 .fullIMgBx {
  margin-top: 20px;
}

.full-slide-right3 {
  display: flex;
  align-items: flex-end;
  padding-left: 0;
}

/*About css*/
.aboutSection1 {
  background: #fff;
}
.AboutBx {
  padding-top: 70px;
  padding-bottom: 70px;
}
.AboutTx h1 {
  font-size: 30px;
  line-height: 36px;
  color: #0074ad;
  margin-bottom: 15px;
  font-weight: 700;
}
.AboutTx h1 span {
  display: inline-block;
  height: 2px;
  width: 100px;
  background: #0074ad;
}
.AboutTx {
}
.AboutBx {
  flex-wrap: wrap;
  align-items: center;
}
.AboutImg {
}
.abt_section:nth-child(even) .AboutBx {
  flex-direction: row-reverse;
}
.abt_section .AboutTx {
  /* padding-left: 50px; */
}

.abt_section:nth-child(even) .AboutTx {
  padding-left: 0 !important;
  padding-right: 50px !important;
  /* background: #fff; */
  /* padding: 30px !important; */
  /* border-radius: 20px ; */
}

.abt_section:nth-child(odd) .AboutTx {
}

.aboutSection3 {
  background: rgb(0 0 0 / 2%);
}
.aboutSection2 {
  background: #fff;
}
.aboutSection4 {
  background: #f1f1f1;
  margin-bottom: 0px;
}
.strestdiv {
  margin-top: 40px;
}
.InnerBanner {
  position: relative;
  min-height: 65vh;
  z-index: 2;
}

.InnerBanner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #182a38;
  z-index: 0;
  height: 100%;
  width: 100%;
}

.hero-top {
  min-height: 60vh;
  position: relative;
  /* background: red; */
  background: #182a38;
}

.InnerBanner figure {
  z-index: 2;
}

.InnerBanner figure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgb(0 0 0 / 65%) 0%, rgb(0 0 0 / 39%) 100%); */
  /* background: linear-gradient(
    90deg,
    rgb(0 0 0 / 25%) 0%,
    rgb(0 0 0 / 21%) 100%
  ); */
  z-index: 9;
}

.InnerBanner figure::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;

  /* background: linear-gradient(153deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 60%); */
  /* background-image: linear-gradient(to right bottom, #000000ea, #00000023, #77777700, #ffffff00, #ffffff00); */
  background-image: linear-gradient(
    135deg,
    hsl(0deg 0% 0%) 0%,
    hsla(0, 0%, 0%, 0.79) 20%,
    hsla(0, 0%, 47%, 0.055) 53%,
    hsla(0, 0%, 100%, 0) 100%
  );
}

.banner .hero-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(to right bottom, #000000b0, #00000000, #77777700, #ffffff00, #ffffff00); */
  background-image: linear-gradient(
    to right bottom,
    #000000ea,
    #00000023,
    #77777700,
    #ffffff00,
    #ffffff00
  );
}

.AboutImgIn {
  overflow: hidden;
  position: relative;
}
/*.AboutTxIn {
    background: #fff;
    padding: 25px;
    border-radius: 7px;
    margin-top: 100px;
    margin-left: -60px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 26%);
}*/
.AboutBx:nth-child(even) .AboutTx .AboutTxIn {
  margin-right: -60px;
  margin-left: 0;
}
body .container2 {
  max-width: 1250px;
}

/*Contact css*/

.contact_scn {
  background: url(../images/contact_bg.jpg) no-repeat center center;
  background-size: cover;
  padding-top: 40px;
  background: #fff;
}
.contact_scn h2 {
  font-size: 54px;
  line-height: 80px;
  color: #424242;
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.contact_scn h2 span {
  display: inline-block;
  position: relative;
  width: 160px;
  margin-left: 30px;
}
.contact_scn h2 span:before {
  position: absolute;
  top: -22px;
  left: 0;
  width: 93%;
  height: 1px;
  background: #424242;
  content: "";
}
.cont_social .ftr2_bx2 {
  margin-right: auto;
  margin-left: 10px;
}
.ftr2_bx2 ul {
  display: flex;
}

.ftr2_bx2 ul li {
  display: block;
  margin: 0px 4px;
  overflow: hidden;
}
.ftr2_bx2 ul li a {
  display: block;
  width: 35px;
  height: 35px;
  border: 1px solid #666666;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  color: #666666;
  justify-content: center;
  font-weight: 300;
  font-size: 16px;
}

.ftr2_bx2 ul li a:hover {
  color: #333;
  transition: 0.5s all ease;
  border: 1px solid #000;
  background: #000;
}
.ftr2_bx2 ul li a:hover i {
  color: #fff;
  transition: 0.5s all ease;
}
.ftr2_bx2 ul li a i {
  margin: 0;
  color: #000;
}
img.cont_map {
  width: 238px;
  height: 238px;
  border-radius: 50%;
}
.map_img span:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
  opacity: 0.8;
  z-index: 9;
}
.map_img span {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #9d9481;
}
.map_img a {
  display: inline-block;
  position: relative;
}
.appi-portfolio-sec {
  overflow: hidden;
}
h4.look_tx {
  position: absolute;
  bottom: 0;
  left: 76px;
  z-index: 9;
  font-size: 18px;
  opacity: 0.9;
  margin: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  color: #fff;
  font-weight: 400;
}
.email_bx {
  margin-top: 50px;
}
.map_img {
  margin: 40px 0 37px 0;
}
.cont_in {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.cont_lt {
  width: 39.5%;
  padding-right: 15px;
}

.contact_scn .cont_lt p {
  width: 95%;
}
.cont_rt {
  width: 60%;
  padding-top: 12px;
  padding-left: 15px;
}
.cont_rt h3 {
  font-size: 20px;
  line-height: 30px;
  color: #020617;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.email_in_bx .email_bx {
  margin-top: 38px;
}
.cont_rt p {
  font-size: 18px;
  color: #000;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 10px;
}
.email_in_bx .email_tx a {
  display: inline-block;
  font-size: 18px;
  color: #0056b3;
  line-height: 24px;
  /*background: url(../images/cont_email.png) no-repeat 0px 6px;*/
  padding-left: 0px;
  transition: 0.5s all ease;
  margin-bottom: 5px;
}
.email_in_bx .phoneNo a {
  /*background: url(../images/Cont_icon.png) no-repeat 0px -1px;*/
}
a {
  text-decoration: none !important;
}
.email_in_bx .email_tx a:hover {
  /*background: url(../images/cont_email.png) no-repeat 0px -19px;*/
  color: #0074ac;
  transition: 0.5s all ease;
}
.email_in_bx .phoneNo a:hover {
  /* background: url(../images/Cont_icon.png) no-repeat 0px -35px;*/
}
.email_in_bx .email_tx a i {
  font-size: 24px;
  color: #0056b3;
  vertical-align: middle;
  margin-right: 10px;
  line-height: 36px;
  margin-top: 0;
  height: auto;
  width: auto;
}
.email_in_bx .email_tx p {
  margin-bottom: 20px;
  color: #020617;
  font-weight: 600;
}
.email_in_bx .email_tx {
  /* width: 50%; */
  margin-bottom: 42px;
}
.email_in_bx {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cont_form_in {
  margin-left: -12px;
  margin-right: -12px;
  margin-top: 25px;
}
.cont_form {
  margin-top: 14px;
}
.cont_form_in .form-group-50 {
  width: 50%;
  float: left;
}
.cont_form_in .form-group {
  margin-bottom: 25px;
  padding: 0 12px;
}

.cont_form_in .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0 0 0 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: #979797;
  background-color: transparent !important;
  background-clip: padding-box;
  border: 1px solid #979797;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  height: 50px;
}
.form-control:focus {
  color: #979797;
  border-color: #9d9481;
  outline: 0;
  box-shadow: none;
}
.cont_form_in textarea.form-control {
  height: 120px;
  padding-top: 18px;
}
.cont_form_in .sub_btn {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  height: 48px;
  width: 174px;
  background: #0056b3;
  border: 0;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 4px;
  outline: 0px auto -webkit-focus-ring-color;
  padding: 12px 20px 12px;
  font-weight: 500;
  transition: 0.5s all ease;
}
.cont_form_in .sub_btn:hover {
  background: #0075ae;
  color: #fff;
  transition: 0.5s all ease;
}
.cont_form_in ::-webkit-input-placeholder {
  /* Edge */
  color: #979797;
}

.cont_form_in :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #979797;
}

.cont_form_in ::placeholder {
  color: #979797;
}

.display_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.right_div {
  width: 100%;
}

.right_div img {
  max-width: 100%;
}

/*Left Menu Css Start*/
.sticky-top {
  top: 15px;
}
.left_DIV {
  padding-right: 25px;
  box-shadow: 0px 0px 42px rgba(0, 0, 0, 0.31);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 40px 10px 50px 10px;
  background: #fff;
  margin-bottom: 50px;
  width: 100%;
  margin-top: 33px;
  border-radius: 7px;
  z-index: 9;
  position: relative;
}
.left_DIV:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 86%;
  height: 19px;
  background: #9d9481;
  content: "";
  transform: translateX(-50%);
  border-radius: 0 0 6px 6px;
}
.left_DIV:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 86%;
  height: 19px;
  background: #0074ad;
  content: "";
  transform: translateX(-50%);
  border-radius: 6px 6px 0 0;
}
.left_DIV ul li {
  display: block;
  position: relative;
  margin: 5px 0;
}
.left_DIV ul li > a {
  display: flex;
  border-bottom: 0px solid #e0e0e0;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  padding: 10px 10px 7px 5px;
  line-height: 22px;
  position: relative;
  transition: 0.5s all ease;
  border-radius: 3px;
  position: relative;
}
.left_DIV ul li > a i {
  color: #333;
  margin: 0;
  display: inline-block;
  margin-right: 7px;
  transition: 0.5s all ease;
}

.left_DIV ul li:hover a i {
  color: #fff;
  transition: 0.5s all ease;
}

.left_DIV ul li > a img {
  height: 16px;
  margin-right: 13px;
  padding-left: 5px;
}
/*.left_DIV ul li > a:before {
    position: absolute;
    top: 14px;
    right: 10px;
    background: url(../images/left_menu_icon.png) no-repeat right top;
    width: 24px;
    height: 10px;
    content: "";
    opacity: 0;
}*/
.left_DIV ul li a.menu_CL:after {
  position: absolute;
  top: 11px;
  right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #a3a3a3;
  content: "+";
  background: transparent;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
}
.left_DIV ul li a.menu_CL:before {
  display: none;
}
.left_DIV ul ul li.active a:before {
  display: none;
}
.left_DIV ul ul li.active a {
  background: transparent;
  color: #86277b;
}
.left_DIV ul li:hover > a {
  background: #0075af;
  transition: 0.5s all ease;
  color: #fff;
}

.left_DIV ul li:hover > a img {
  filter: invert(10);
}
.left_DIV li.left_add_menu > a.menu_CL:after {
  content: "-";
  font-size: 30px;
  font-weight: 300;
}

.left_DIV ul li:hover > a:before {
  opacity: 1;
  transition: 0.5s all ease;
}
.left_DIV ul li.active > a:before {
  opacity: 1;
  transition: 0.5s all ease;
}
.left_DIV ul li.active > a {
  background: #0075af;
  transition: 0.5s all ease;
  color: #fff;
}
.left_DIV ul li.active > a i {
  color: #fff;
}
.left_DIV ul li.active > a img {
  filter: invert(10);
}
.submenu_left {
  display: none;
  margin-top: 12px;
  margin-bottom: 15px;
}
.left_DIV ul li ul li {
  margin: 0;
}
.left_DIV ul li ul li a {
  display: block;
  font-size: 13px;
  padding: 5px 10px 5px 15px;
  line-height: 20px;
}
.left_DIV ul li ul li:hover a {
  background: transparent;
  color: #86277b;
}
.left_DIV ul li ul li:hover a:before {
  display: none;
}

/*Breadcrun css*/

.bradecrumd ul li a {
  display: block;
  color: #999999;
}
.bradecrumd ul li {
  display: inline-block;
  font-size: 12px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  padding: 0 8px 0 13px;
  position: relative;
  margin: 6px 0 7px 0;
}
figure {
  margin: 0;
}
.bradecrumd ul {
  margin: 0;
  padding: 0;
}
.bradecrumd {
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
}
.bradecrumd ul li:before {
  position: absolute;
  top: 0;
  right: -5px;
  content: ">";
  font-size: 12px;
  color: #999;
}
.bradecrumd ul li:last-child:before {
  display: none;
}
.bradecrumd ul li:last-child {
  padding-right: 0;
}
.contect_bx {
  margin-top: 20px;
  margin-bottom: 35px;
}

.contect_bx {
  margin-top: 20px;
  margin-bottom: 35px;
}
.contect_bx h1 {
  margin-bottom: 20px;
}
.identy_bx {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}
.identy_img {
  width: 48%;
}

.identy_tx {
  width: 52%;
  padding: 15px 24px 0 40px;
}
.align_center {
  align-items: center;
}
.align_center .identy_tx {
  padding-bottom: 50px;
}
.identy_tx h2 {
  color: #0075af;
  font-weight: 300;
  margin: 0;
  line-height: 40px;
  font-size: 27px;
}
.hd6in {
  font-size: 17px;
  color: #000;
  line-height: 29px;
  font-weight: 500;
  margin-bottom: 25px;
  font-style: italic;
}

.green_bx {
  background: #0075af;
  padding: 45px 25px 30px 30px;
  position: relative;
  margin: 25px 0 35px 0;
}

.contect_bx .green_bx p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 8px;
}

.contect_bx h4 {
  font-size: 20px;
  line-height: 27px;
  color: #0075af;
  font-weight: 400;
  margin-bottom: 5px;
}
.contect_bx p {
  color: #000;
  margin-bottom: 20px;
}

.identy_tx2 h1 {
  margin-bottom: 10px;
}
.identy_tx2 {
  padding-top: 0;
}
.Leftmenu {
  padding-right: 0 !important;
}
.RightContent {
  padding-left: 35px !important;
}
.green_bx ul li {
  display: block;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 22px;
  position: relative;
  padding-left: 20px;
}
.green_bx ul li:before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #fbce2a;
  content: "";
}

ul.border_bx {
  margin-top: 25px;
  flex-wrap: wrap;
  display: flex;
  margin-bottom: 0;
}
ul.border_bx li {
  display: flex;
  background: #f1f1f1;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333333;
  padding: 10px 15px 10px 20px;
  line-height: 23px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: 32.6666%;
  margin-right: 1%;
  z-index: 1;
  transition: 0.5s all ease;
  margin-right: 0PX;
}
ul.border_bx li:hover {
  background: #e5e5e5;
  color: #fff;
  transition: 0.5s all ease;
}
ul.border_bx li:hover:before {
  width: 100%;
  transition: 0.5s all ease;
  z-index: -1;
}
ul.border_bx li:nth-child(3n + 3) {
  margin-right: 0;
}

ul.border_bx li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: #0074ac;
  content: "";
  transition: 0.5s all ease;
}
ul.list_flex li {
  width: 100%;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.4px;
}
ul.list_flex {
  margin-bottom: 30px;
}

.list_content ul {
  padding-left: 35px;
  margin-top: 35px;
}

.list_content ul li {
  list-style: disc;
  color: #333;
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
}

body h3 {
  color: #333;
  font-size: 30px;
}
.slient_st {
  border-top: 1px solid #e3e3e3;
  margin-top: 30px;
  padding-top: 27px;
}

.socialDv {
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 5px 10px;
  border-top: 0px solid #ccc;
}
body .cPortfolioPicture {
  margin: 0;
}
p.titleProjectName b {
  font-size: 18px;
  font-weight: 500;
}
.PortFolioBx {
  padding: 0 !important;
  min-height: auto !important;
  position: relative;
  transition: 0.5s all ease;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}
.PortHoverbx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(0deg 0% 0% / 75%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all ease;
  transform: scale(0);
}
.mainBox {
  /* border: 1px solid #f1f1f1 !important; */
}
.cPortfolioPicture {
  height: 300px !important;
  object-fit: cover;
}

.PoroClickBTn {
  font-size: 15px !important;
  width: 100px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #fff;
  background: transparent !important;
  text-transform: capitalize;
  font-size: 14px !important;
  height: 37px !important;
  background-size: 27px !important;
  color: #fff;
  transition: 0.5s all ease;
}
.PoroClickBTn:hover {
  background: #000 !important;
  transition: 0.5s all ease;
  color: #fff;
}
.PoroClickBTn i {
  color: #fff !important;
  display: inline-block;
  margin-right: 9px;
  height: auto !important;
  width: auto !important;
  margin-top: 0;
  font-size: 15px !important;
}
.PoroClickBTn:hover i {
  color: #fff !important;
}
.ProImgbLink {
  position: relative;
  display: block;
}
.ProImgbLinkImg {
  max-width: 100%;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  -ms-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  margin: 0 !important;
  width: 100%;
  -webkit-transition: all 0.5s ease-in 0.2s;
  -moz-transition: all 0.5s ease-in 0.2s;
  -o-transition: all 0.5s ease-in 0.2s;
  -ms-transition: all 0.5s ease-in 0.2s;
  transition: all 0.5s ease-in 0.2s;
  opacity: 1;
}
.ProImgbLinkImg:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*background: rgb(0 0 0 / 40%);*/
  content: "";
  z-index: 9;
}
.PortFolioBx:hover .ProImgbLinkImg {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.5s ease-in 0.2s;
  -moz-transition: all 0.5s ease-in 0.2s;
  -o-transition: all 0.5s ease-in 0.2s;
  -ms-transition: all 0.5s ease-in 0.2s;
  transition: all 0.5s ease-in 0.2s;
  opacity: 1;
}

.PortHoverbx {
  -webkit-transform: scale(0) rotate(0deg);
  -moz-transform: scale(0) rotate(0deg);
  -o-transform: scale(0) rotate(0deg);
  -ms-transform: scale(0) rotate(0deg);
  transform: scale(0) rotate(0deg);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.PortFolioBx:hover .PortHoverbx {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  -moz-transform: scale(1) rotate(0deg);
  -o-transform: scale(1) rotate(0deg);
  -ms-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.portfolioTx h3 {
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
  transition-delay: 0.3s;
  transition: 0.5s all ease;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-385px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolioTx p {
  font-size: 14px;
  color: #fff;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 15px;
  transition-delay: 0.3s;
  transition: 0.5s all ease;
  visibility: hidden;
  opacity: 0;
  transform: translateX(385px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  overflow-y: auto;
  height: 70px;
}
.mainBox .btn_loadmore {
  font-size: 16px;
  color: #ffffff;
  width: 125px;
  background: #9d9481;
  border: 0;
  font-size: 14px;
  outline: 0px auto -webkit-focus-ring-color;
  padding: 10px 10px 10px;
  font-weight: 400;
  transition: 0.5s all ease;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition-delay: 0.3s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-385px);
  height: auto;
}
/* .mainBox:hover .btn_loadmore {
    transition-delay: 0.3s;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    color: #fff;
} */
.socialDv {
  transition-delay: 1.5s;
  transition: 0.5s all ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
/* .mainBox:hover .socialDv {
    transform: translateY(0);
    transition-delay: 1.5s;
    visibility: visible;
    opacity: 1;
}
.mainBox:hover h3 {
    transition-delay: 0.7s;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    color: #fff;
}
.mainBox:hover p {
    transition-delay: 0.7s;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    color: #fff;
} */

.ImgHd {
  font-size: 15px;
  line-height: 22px;
  color: #0067ad;
  margin-bottom: 0;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgb(255 255 255 / 85%);
  text-align: center;
  padding: 10px;
  z-index: 9;
  background: rgb(0 0 0 / 70%);
  color: #ffffff;
}
.portfolioTx {
  padding: 15px;
  text-align: center;
  position: absolute;
  top: 0;
  z-index: 99999;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cont_form {
  margin-top: 14px;
  background: #fff;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
  border-radius: 8px;
  overflow: hidden;
  padding: 30px 20px 25px 25px;
  position: relative;
}
/* .PortfolioRow:nth-child(even) {
    flex-direction: row-reverse;
} */
/*.PortfolioCol:nth-child(1) {
    width: 50%;
    flex: 50%;
    max-width: 50%;
    float: left;
}
.PortfolioCol:nth-child(2) {
    width:25%;
    flex:25%;
    max-width:25%;
    float: left;
}
.PortfolioCol:nth-child(3) {
    width:25%;
    flex:25%;
    max-width:25%;
    float: left;
}*/

/*New Portfolio css*/
.NewPortFolioTx .portfolioTx {
  position: static;
  text-align: left;
  padding: 0;
}
.NewPortFolioTx .portfolioTx h3,
.NewPortFolioTx .portfolioTx p {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  text-align: left;
  width: 100%;
  color: #fff;
}
.NewPortFolioTx .socialDv {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  text-align: left;
  justify-content: flex-start;
  padding-left: 0;
}
.NewPortFolioBx {
  display: flex;
}
.NewPortFolioImgA {
  width: 50%;
  display: block;
  position: relative;
  z-index: 9;
}
.NewPortFolioTx {
  width: 57%;
  position: relative;
  background: #83817d;
  margin-left: -7%;
  padding: 20px 15px 20px 60px;
}
.NewPortFolioTx:before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  height: 20px;
  background: #83817d;
}
.NewPortFolioTx:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 20px;
  background: #83817d;
}
.NewPortFolioTx .PoroClickBTn {
  margin: 5px 2px !important;
  width: 85px !important;
  border: 1px solid #fff;
  color: #fff;
}
.NewPortFolioTx .PoroClickBTn:hover {
  border: 1px solid #0074ac;
  color: #fff;
  background: #0074ac !important;
}
.NewPortFolioTx .PoroClickBTn i {
  color: #fff !important;
}
.cPortfolioPicture {
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 1.2s ease-out;
  -moz-transition: all 1.2s ease-out;
  -o-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
}
.ProImgbLinkImg {
  overflow: hidden;
}
.NewPortFolioBx:hover .cPortfolioPicture {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  -ms-transform: scale(1.2);
}

#HomeSlider .owl-dots {
  display: flex;
  position: absolute;
  bottom: 25px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#HomeSlider button.owl-dot {
  width: 25px;
  height: 25px;
  border: 2px solid transparent;
  border-radius: 50%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background: transparent;
}
#HomeSlider button.owl-dot.active {
  border: 2px solid #fff;
}
#HomeSlider button.owl-dot span {
  position: static;
  width: 9px;
  height: 9px;
  background: #fff;
  display: block;
  border-radius: 50%;
  margin: 0;
}
.arrPortfolio_Cat_bx {
  padding: 60px 0;
  margin-bottom: 0px;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.arrPortfolio_Cat_bx1 {
  position: relative;
}
.arrPortfolio_Cat_bx:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ccc;
  background: url(../images/Game-Development.png) repeat center center;
  opacity: 0.1;
  opacity: 0.05;
}
.arrPortfolio_Cat_bx1:before {
  background: url(../images/Game-Development.png) repeat center center;
  background: url(../images/Game-Development-grey.png) repeat center center;
  background: #fff;
}

.arrPortfolio_Cat_bx2:before {
  background: url(../images/coreFeatrShow_img3_grey.png) repeat center center;
}

.arrPortfolio_Cat_bx3:before {
  background: url(../images/E-LearningImg.svg) repeat center center;
}

.arrPortfolio_Cat_bx4:before {
  background: url(../images/coreFeatrShow_img2_grey.png) repeat center center;
}

.arrPortfolio_Cat_bx5:before {
  background: url(../images/coreFeatrShow_img4_grey.png) repeat center center;
}

.arrPortfolio_Cat_bx6:before {
  background: url(../images/Game-Development-grey.png) repeat center center;
}

.arrPortfolio_Cat_bx7:before {
  background: url(../images/coreFeatrShow_img1_grey.png) repeat center center;
}

.btn_loadmore {
  font-size: 16px;
  color: #ffffff;
  height: 48px;
  width: 192px;
  background: #0067ad;
  border: 0;
  outline: 0px auto -webkit-focus-ring-color;
  padding: 12px 20px 12px;
  font-weight: 400;
  transition: 0.5s all ease;
  margin: 0 auto;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.btn_loadmore:hover {
  background: #0075ae;
  color: #fff;
}
#iItemDetailsHolder img {
  /* width: 100%; */
  max-width: 100%;
  max-height: 650px;
  margin-bottom: 25px;
  border-radius: 10px;
}
#iItemDetailsHolder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 88%);
  z-index: 999999;
  display: none;
  justify-content: center;
  overflow-y: scroll;
  padding: 40px 20px;
}
.popupsroll {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  position: relative;
}
div#iCloseItemDetails {
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 38px;
  font-size: 55px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

div#iItemDetailsHolder h3 {
  font-size: 26px;
  line-height: 32px;
  color: #0074ad;
  margin-bottom: 15px;
  font-weight: 600;
}
div#iItemDetailsHolder p {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Testimonials css */
.portfolio_home_page {
  background: #c9f6ff;
  background: url("../images/port-bg.jpg");
  background-repeat: round;
  padding: 55px 0 30px;
  padding-bottom: 30px;
}

.portfolio_home_page h2 {
  color: #fff;
  margin-bottom: 60px;
  text-align: center;
}

.portfolio_home_page p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.port_logo {
  margin-bottom: 30px;
}
.port_logo {
  margin-bottom: 30px;
  width: 100px;
  height: 100px;
  background: #243851;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.portfolio_hm_rt {
  padding: 35px 4% 0 30px !important;
}
.portfolio_home_page .container {
  max-width: 100%;
}

.container-full {
  width: 80%;
  margin: 0 auto;
}

.portfolio_hm_lt {
  /* min-height: 450px; */

  display: flex;
  /* align-items: center; */
  /* padding-left: 7%; */
  border-radius: 0 10px 10px 0;
  justify-content: end;
  /* padding-right: 50px; */
  /* margin-right: 10px; */
}
.portfolio_hm_lt .port_img {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
}

.portfolio_hm_lt .port_text h3 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}

.portfolio_hm_lt .port_text .category_tag {
  background: #f6971bd6;
  color: #fff;
  text-transform: capitalize;
  padding: 2px 5px;
  border-radius: 2px;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 20px;
}

.portfolio_hm_lt .port_text .category_tag p {
  font-size: 13px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.portfolio_home_page .row {
  margin-right: 0;
  margin-left: 0;
}

.portfolio_home_SL .owl-nav {
  display: block !important;
  text-align: center;
  position: static;
  right: 0;
  margin-top: 0;
  padding-right: 0;
  padding-top: 50px;
}
.portfolio_home_SL button.owl-prev {
  width: 50px;
  height: 50px;
  border: none !important;
  font-size: 0px !important;
  line-height: 22px !important;
  color: #fff !important;
  margin: 5px;
  border-radius: 5px;
  background: url("../images/prev_arrow.png") no-repeat center center
    transparent !important;
  opacity: 0.8;
}

.portfolio_home_SL button.owl-next {
  width: 50px;
  height: 50px;
  border: none !important;
  font-size: 0px !important;
  line-height: 22px !important;
  color: #fff !important;
  margin: 5px;
  border-radius: 5px;
  background: url("../images/next_arrow.png") no-repeat center center
    transparent !important;
  opacity: 0.8;
}
.portfolio_home_SL button.owl-prev:hover,
.portfolio_home_SL button.owl-next:hover {
  opacity: 1;
}

.focusSlide .owl-dots.disabled,
.focusSlide .owl-nav.disabled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.focusSlide .owl-dots {
  display: none;
}

.focusSlide button.owl-prev {
  width: 50px;
  height: 50px;
  border: none !important;
  font-size: 0px !important;
  line-height: 22px !important;
  color: #fff !important;
  margin: 5px;
  border-radius: 5px;
  background: url("../images/prev_arrow.png") no-repeat center center
    transparent !important;
  opacity: 0.8;
}

.focusSlide button.owl-next {
  width: 50px;
  height: 50px;
  border: none !important;
  font-size: 0px !important;
  line-height: 22px !important;
  color: #fff !important;
  margin: 5px;
  border-radius: 5px;
  background: url("../images/next_arrow.png") no-repeat center center
    transparent !important;
  opacity: 0.8;
}

.focusSlide .owl-prev:hover,
.focusSlide button.owl-next:hover {
  opacity: 1;
}

.img-flude {
  width: 100%;
  border-radius: 12px;
}
.paddbott20 {
  padding-bottom: 20px;
}
h3 {
  color: #0c3c60;
}

.aboutSection2 img,
.aboutSection3 img {
  max-width: 100%;
  width: fit-content;
}

.img-flude {
  width: 100%;
}
.cContactInfo .fa-facebook {
  color: #527dbd;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 25px;
}
.cContactInfo .fa-twitter {
  color: #1da1f2;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 25px;
}
.cContactInfo .fa-linkedin {
  color: #0077b5;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 25px;
}
.cContactInfo .fa-instagram {
  color: #f89a27;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 25px;
}
.cContactInfo .fa-youtube-play {
  color: red;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 25px;
}
.cContactInfo .fa-skype {
  color: #00ade8;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 25px;
}

.w-90 {
  width: 90% !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #other-services .nav-tabs {
    width: 60px;
  }
}

.core_value_scn {
  padding: 60px 0;
  /* background: #f7f7f7;} */
  background: url("../images/corevalue-bg.png") no-repeat center center;
  background-size: cover;
}

.core_value_scn h1 {
  margin-bottom: 50px;
  margin-top: 30px;
  color: #fff;
  font-weight: 700;
}

.no_tx {
  font-size: 42px;
  font-weight: 600;
  color: #0082c2;
  line-height: 46px;
  margin-bottom: 10px;
  text-align: right;
  font-family: "Helvetica";
}

.core_value_bx span {
  display: block;
  margin-bottom: 20px;
}
.core_value_bx {
  padding: 15px 20px;
  background: #fff;
  height: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 15px;
  transition: all 0.5s ease;
  margin-bottom: 10px;
  position: relative;
}
.core_value_bx:hover,
.core_value_bx:active {
  /* transform: translateY(-8px); */
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.core_value_bx h4 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: bolder;
  letter-spacing: 0.5px;
  color: #fff;
}

.core_value_bx {
  font-size: 16px;
  /* text-align: justify; */
  display: flex;
  gap: 20px;
  background: #1947b338;
  color: #fff;
  box-shadow: none;
  /* text-align: justify; */
}

.focous-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 60px;
}

.focous-slider {
  display: block;
}

.core_value_scn h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}
.focous-slider .core_value_bx {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.focous-slider .core_value_bx .inner-text {
  text-align: center;
}

.focous-slider .core_value_bx img {
  color: #fff;
  width: 50px;
  filter: invert(1);
}

.focous-slider .core_value_bx i {
  font-size: 35px;
}

.focous-grid .core_value_bx span {
  border: 1px solid #ffffff9e;
  /* height: 90px; */
  /* width: 90px; */
  padding: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focous-grid .core_value_bx img {
  filter: invert(100%);
  -webkit-filter: invert(100%);
  height: 30px;
}
.focous-grid .core_value_bx span i {
  font-size: 22px;
}
.core_value_bx p {
  /* height: 45px; */
  /* overflow: hidden; */
  font-weight: lighter;
  font-size: 17px;
  letter-spacing: 0.3px;
  /* font-size: ; */
}

.focous-slider .core_value_bx p {
  height: 100%;
}

.focous-text img {
  max-width: 100%;
  border-radius: 12px;
}

@media (max-width: 850px) {
  .focous-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .focous-text img {
    display: none;
  }
  .core_value_scn h1 {
    margin-bottom: 0px;
  }
  .core_value_scn {
    padding: 20px 0px;
  }
}

@media (max-width: 600px) {
  .core_value_bx h4 {
    font-size: 16px;
  }
  .core_value_bx p {
    font-size: 15px;
  }
  .core_value_bx {
    padding: 15px 10px;
  }
  .focous-grid .core_value_bx img {
    height: 23px;
  }
  .focous-grid .core_value_bx span i {
    font-size: 18px;
  }
  .portfolio_hm_lt {
    margin-bottom: 30px;
  }
  .spinner {
    width: 60px;
    height: 60px;
  }
  .hero-section {
    min-height: 320px;
  }
}

/*Service css*/
.container {
  max-width: 100%;
  width: 100%;
  /* padding-left: 7%;
      padding-right: 7%; */
}
.services_icon {
  margin-bottom: 10px;
}
.services_scn h1 {
  margin-bottom: 60px;
}
.services_bx {
  padding: 25px 16px;
  text-align: left;
  background: #f72585;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.services_bx:hover,
.services_bx:active {
  transform: translateY(-8px);
}

.services_icon img {
  height: 60px;
}
.services_bx2 {
  background: #7209b7;
}
.services_bx3 {
  background: #3a0ca3;
}
.services_bx4 {
  background: #0077b6;
}
.services_bx5 {
  background: #023e8a;
}
.services_bx6 {
  background: #1b263b;
}
.services_bx h3 {
  font-size: 24px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 600;
  transition: all 500ms ease;
  letter-spacing: 0.5px;
}
.services_bx p {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #fff;
  transition: all 500ms ease;
  margin-bottom: 0px;
  letter-spacing: 0.6px;
}

.filter_scn {
  margin-top: 60px;
}
.filter_scn .nav-tabs {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 15px;
}

.nav-tabs a {
  margin: 0px 5px;
}

.filter_tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.filter_tabs_Cl {
  display: inline-block;
  padding: 13px 14px 12px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s all ease;
  border: 1px solid #0074ac;
  border-radius: 4px;
  color: #333;
  letter-spacing: 0.6px;
}
.filter_tabs_Cl:hover,
.filter_tabs_Cl.active {
  background: #0074ac;
  color: #fff;
  transition: 0.5s all ease;
}

.Portfoliobox_2_name {
  background: #0a4363;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  padding: 6px 13px 6px 13px;
  margin: auto 0;
  color: #fff;
  transition: 0.5s all ease;
  margin-bottom: 20px;
}
/* .Portfoliobox_2_name:hover {
      background: #24B7C7;
      color: #fff;
      transition: 0.5s all ease;
  } */
.Portfoliobox_2_name span {
  display: block;
}

.PortfolioCol .row {
  padding: 10px;
  border-radius: 20px;
  margin: 0px 3px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.PortfolioCol_text p {
  line-height: 22px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.5s all ease;
  border-radius: 4px;
  color: #333;
  letter-spacing: 0.6px;
  margin-bottom: 20px;
}
.btn_loadmore {
  display: inline-block;
}
.Portfoliobox_2_tx {
  padding-top: 20px;
}
.new_port_scn {
  margin-top: 50px;
}

.imgProto img {
  width: 50px;
  height: 50px;
  float: left;
  background-size: cover;
  border-radius: 100%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.cShareLink,
.cAndroidLink,
.ciOSLink,
.cWebLink {
  width: 32px;
  height: 32px;
  margin: 5px;
  float: left;
  font-size: 0px;
  cursor: pointer;
}
.cShareLink {
  background: url(../../../assets/images/portfolio/icon_share.svg) no-repeat 0 0;
}
.cAndroidLink {
  background: url(../../../assets/images/portfolio/icon_android.svg) no-repeat 0
    0;
}

.ciOSLink {
  background: url(../../../assets/images/portfolio/icon_apple.svg) no-repeat 0 0;
}

.cWebLink {
  background: url(../../../assets/images/portfolio/icon_web.svg) no-repeat 0 0;
}

/* Model popup start*/
.ms-modal {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}
.ms-modal.is-top-modal .ms-modal__inner-wrap {
  background-color: rgba(0, 0, 0, 0.75);
}
.ms-modal__inner-wrap {
  background-color: rgba(0, 0, 0, 0.15);
  height: auto;
  min-height: 100%;
  padding: 5% 0;
  position: relative;
  width: 100vw;
}
.ms-modal .share-modal {
  padding: 40px;
  text-align: center;
  max-width: 680px;
}
.ms-modal__modal--white-bg {
  background-color: #fff;
}
.ms-modal__modal {
  background-color: #f4f3f3;
  border-radius: 10px;
  left: 0;
  right: 0;
  padding: 30px;
  transition-duration: 0.1s;
  width: 100%;
  z-index: 9999;
  bottom: 0;
  top: 0;
  height: 210px;
  margin: auto;
  position: absolute;
}
.ms-close-btn {
  cursor: pointer;
  display: block;
  height: 15px;
  overflow: hidden;
  position: absolute;
  right: 12px;
  top: 12px;
  white-space: nowrap;
  width: 15px;
  text-indent: 100%;
  z-index: 99;
}
.ms-close-btn:hover svg {
  opacity: 1;
}
.ms-close-btn svg {
  fill: #555;
  left: 0;
  height: 100%;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
  text-indent: 0;
  top: 0;
  width: 100%;
}
.ms-modal .share-modal .ms-modal__content {
  width: 100%;
}
.ms-modal .share-modal__header {
  color: #666;
  font-size: 32px;
  margin-bottom: 30px;
}
.ms-modal .share-modal__share-buttons {
  /* display: -ms-flexbox;
      display: flex;
      margin-bottom: 30px;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 100%; */

  justify-content: space-between;
  width: 100%;
  float: left;
}
.ms-modal .share-modal__share-button {
  color: #333;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 14px;
  height: 50px;
  margin-bottom: 10px;
  line-height: 51px;
  margin-right: 10px;
  width: 140px;
  float: left;
  white-space: nowrap;
  text-decoration: none;
}
.ms-btn--light,
.ms-btn--light:link,
.ms-btn--light:visited {
  background-color: #e8e5e5;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.ms-modal .share-modal__share-button--facebook svg {
  fill: #3a5a97;
  height: 20px;
  width: 20px;
}
.ms-modal .share-modal__share-button svg {
  margin-right: 10px;
}
.ms-btn--light svg {
  fill: #666;
  height: 14px;
  margin-right: 5px;
  position: relative;
  width: 14px;
}
/* .ms-modal .share-modal__share-button:last-of-type {
      margin-right: 0;
  } */
.ms-modal .share-modal__share-button--twitter svg {
  fill: #1ea1f3;
  height: 20px;
  width: 20px;
}
.ms-modal .share-modal__share-button--pinterest svg {
  fill: #bd081c;
  height: 21px;
  width: 21px;
}
.ms-btn--light,
.ms-btn--light:link,
.ms-btn--light:visited {
  background-color: #f0f0f0;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}
.ms-btn--light {
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  color: #666;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  height: 40px;
  min-height: 1em;
  min-width: auto;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 41px;
  padding: 0;
}
.ms-btn--light:hover {
  background-color: #e8e8e8;
  color: #666;
}
.share-modal__share-buttons .fa-facebook {
  color: #527dbd;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 20px;
  margin-top: 0;
}
.share-modal__share-buttons .fa-twitter {
  color: #1da1f2;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 20px;
  margin-top: 0;
}
.share-modal__share-buttons .fa-linkedin {
  color: #0077b5;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 6px;
}
.share-modal__share-buttons .fa-instagram {
  color: #f89a27;
  transition: 0.5s all;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: 0.5s;
  font-size: 20px;
  margin-top: 0;
}
.mainBox {
  /* border: 1px solid #ccc; */
  padding: 10px;
  margin-bottom: 30px;
  min-height: 364px;
  /* box-shadow: 0 10px 30px rgb(0 0 0 / 30%); */
}
.mainBox:hover {
  background: #fff;
  opacity: 1;
  /* box-shadow: 0 10px 40px rgba(0,0,0,.2); */
  transition: box-shadow 0.5s;
}
.titleProjectName {
  padding: 14px 0;
  background-color: #0c3c60;
  color: #ffffff;
  text-align: center;
  margin: 0;
  background-color: #0a76aa;
  box-shadow: 0 8px 24px 0 rgb(31 38 135 / 37%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background-image: radial-gradient(
    circle farthest-corner at 10% 12%,
    rgb(0 116 172) 0%,
    rgb(157 148 129) 90%
  );
}
.arrPortfolio_Cat_bx h1 {
  font-size: 30px;
  line-height: 36px;
  color: #0074ad;
  margin-bottom: 25px;
  font-weight: 600;
}

.portfolioTitle {
  font-size: 36px;
  line-height: 36px;
  color: #0074ad;
  font-weight: 6 00;
  margin-top: 20px;
  text-align: center;
}

.itemInfoRight {
  position: absolute;
  width: 50%;
  right: 50px;
  display: inline-block;
}

/*Blog Css*/
.blog_scn {
  background-color: #fff;
  background-image: url("/assets/images/blog_bg.jpg");
  padding: 50px 0 35px;
}

.blog_scn svg ,
.blogs svg {
  width: 40px;
}

.blog_scn nav {
  margin: 0 auto;
  margin-bottom: 50px;
}

.blog_scn .flex-1,
.blogs .flex-1{
  display: none;
}
.blog_scn [aria-current="page"] span,
.blogs [aria-current="page"] span {
  background: #0056b3 !important;
  color: #fff !important;
}


.blog_scn .text-gray-700,
.blogs .text-gray-700 {
  margin-bottom: 20px;
  color: #111;
  text-align: center;
}

.blogSin_img {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  padding: 20px;
  background: #f5f5f5;
}
.blogSin_img img {
  border-radius: 10px;
  /* min-height: 295px; */
}
.blogSin_bx_hd {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #0a0a0a;
  transition: 0.5s all ease;
  margin-bottom: 20px;
}
.blogSin_bx_tx h5 {
  font-size: 14px;
}
.blog_outer {
  margin-top: 50px;
}
.Readmoreblog {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #fa0368;
  opacity: 0;
  display: inline-block;
}

.blogdetail_page {
  overflow: inherit;
}
.blogdetail_cont {
  margin-top: -232px;
}
.blogdetail_cont_left {
  padding-top: 175px;
}
.blogdetail_cont .blogSin_img {
  margin-bottom: 45px;
}
.blogdetail_cont .blogSin_img img {
  height: 348px;
}
.blogSin_bx_tx p {
  line-height: 22px;
  font-size: 17px;
  font-weight: 500;
  transition: 0.5s all ease;
  border-radius: 4px;
  color: #333;
  letter-spacing: 0.6px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 25px;
}
.web_readmore {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
  transition: 0.5s all ease;
  background: #0d6fad;
  border-radius: 5px;
  padding: 9px 22px;
  margin-top: 20px;
}

.web_readmore:hover {
  color: #fff;
}

.web_readmore span {
  margin-left: 13px;
  margin-bottom: 5px;
  display: none;
}

.sub_btn {
  /* position: relative;
      display: inline-block;
      color: #0a0a0a;
      transition: all ease .3s;
      overflow: hidden;
      /* background: rgba(0, 0, 0, 0) linear-gradient(160deg, #9d9481 0%, #8f7849 80%, #a445b2 168%) repeat scroll 0% 0%; 
      background: #0D6FAD;
      padding: 8px 25px 9px 25px;
      border-radius: 3px 3px 3px 3px; */

  background: #0d6fad;
  border-radius: 4px;
  padding: 5px 20px;
  font-size: 16px;
  width: fit-content;
  color: #fff;
  font-weight: 500;
}
.btn_div {
  margin-top: 10px;
  margin-bottom: 15px;
}
.sub_btn {
  /* background: rgba(0, 0, 0, 0)
      linear-gradient(160deg, #9d9481 0%, #8f7849 80%, #a445b2 168%) repeat scroll
      0% 0%;
    padding: 10px 28px;
    text-align: center;
    background-size: 200% auto;
    color: white;
    border-radius: 5px;
    display: inline-block;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
    outline: none !important;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.1px;
    z-index: 1;
    background: #0d6fad; */

  background: #0d6fad;
  border-radius: 4px;
  padding: 5px 20px;
  font-size: 16px;
  width: fit-content;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}
.sub_btn img {
  height: 24px;
  display: inline-block;
  margin: 0px 6px 0 0;
  vertical-align: middle;
}
.sub_btn:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #0075ae;
  position: absolute;
  left: 0;
  bottom: -110px;
  border-radius: 5px;
  transform: scale(2) rotate(-13deg);
  transition: 0.5s;
  opacity: 0;
  z-index: -1;
}
.sub_btn:hover:after {
  bottom: 0px;
  opacity: 1;
}
.sub_btn:hover {
  color: #fff;
}

.btn_div .sub_btn {
  background: #fff9f2d6;
  border: 1px solid #f6971bd6;
  color: #f6971bd6;
  border-radius: 4px;
  padding: 4px 20px;
  font-size: 15px;
  width: fit-content;
  /* color: #fff; */
  font-weight: 500;
  letter-spacing: 0.15px;
  text-transform: capitalize;
  cursor: default;
}

.PortfolioCol {
  margin-bottom: 30px;
}

.portfolioImgSm {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 25px;
  padding: 20px;
  background: #f5f5f5;
}

.portfolioImgSm img {
  border-radius: 8px;
}

.portfolioText {
  margin-top: 23px;
}

.portfolioText .projectCategoryText {
  background: #0d6fad;
  border-radius: 4px;
  padding: 5px 20px;
  font-size: 16px;
  width: fit-content;
  color: #fff;
  font-weight: 500;
}

.portfolioText h3 {
  font-size: 23px;
  margin-top: 20px;
  font-weight: 600;
  color: #0d6fad;
  margin-bottom: 7px;
}

.portfolioText p {
  font-size: 17px;
  /* text-align: justify; */
}

.portfolioText .btnLoadMore {
  color: #000;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  text-decoration: none;
  transition: 0.5s all ease;
}

.portfolioText .btnLoadMore span {
  margin-left: 13px;
  margin-bottom: 5px;
}

@media (max-height: 800px) {
  portfolio_hm_lt {
    margin-bottom: 20px;
  }
}
@media screen and (min-height: 800px), screen and (min-width: 800px) {
  /* .ms-modal--centered .ms-modal__inner-wrap {
          padding: 0;
      }
      .ms-modal--centered .ms-modal__modal {
          top: 50vh;
          -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
      } */
}

/* ----------- iPhone 6, 6S, 7 and 8  start----------- */
/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .ms-modal__modal {
    height: 250px;
    width: 90%;
  }
  .ms-modal .share-modal__share-button {
    width: 112px;
  }
  .arrPortfolio_Cat_bx h1 {
    font-size: 22px;
    line-height: 30px;
  }
}
/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .ms-modal__modal {
    width: 90%;
    height: 400px;
  }
  .ms-modal .share-modal__share-button {
    float: none;
    margin: 10px auto;
  }
}
/* ----------- iPhone 6, 6S, 7 and 8  end----------- */

/* ----------- Galaxy S4, S5 and Note 3 ----------- */

/* Portrait */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .ms-modal__modal {
    width: 90%;
    height: 400px;
  }
  .ms-modal .share-modal__share-button {
    float: none;
    margin: 10px auto;
  }
}

/* Landscape */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .ms-modal__modal {
    height: 250px;
    width: 90%;
  }
  .ms-modal .share-modal__share-button {
    width: 120px;
  }
}

/* ----------- Galaxy S6 ----------- */

/* Portrait */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) and (orientation: portrait) {
  .ms-modal__modal {
    width: 90%;
    height: 400px;
  }
  .ms-modal .share-modal__share-button {
    float: none;
    margin: 10px auto;
  }
}

/* Landscape */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 4) and (orientation: landscape) {
  .ms-modal__modal {
    height: 250px;
    width: 90%;
  }
  .ms-modal .share-modal__share-button {
    width: 120px;
  }
}
/* ----------- Galaxy S6 ----------- */

/* ----------- Redmi Y2 start----------- */
/* Portrait */
@media screen and (device-width: 360px) and (device-height: 720px) and (orientation: portrait) {
}

/* Landscape */
@media screen and (device-width: 720px) and (device-height: 360px) and (orientation: landscape) {
}
/* ----------- Redmi Y2 end----------- */

@media screen and (max-width: 335px) {
  .mainBox {
    padding-bottom: 50px;
  }
}

.img-flude {
  width: 100%;
}
.order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -ms-flex-order: 2;
  order: 2;
}
.order-md-1 {
  -ms-flex-order: 1;
  order: 1;
}

@media (min-width: 768px) {
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
}

.left-text {
  text-transform: uppercase;
  margin-top: 40px;
  text-align: center;
  color: #0074ac;
  margin-bottom: 10px;
}

.left_DIV {
  position: sticky;
  top: 12%;
}

.cServiceQuote {
  color: #676563;
  font-family: monospace;
  margin-top: 15px;
}
.img-flude {
  width: 100%;
}

.ser_features {
  margin-top: 40px;
  margin-bottom: 20px;
  /* background: red; */
}

.ser_features {
  row-gap: 20px;
}
.ser_features > div {
  background: #fff;
  /* padding: 10px; */
  /* margin: 0px 5px; */
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.ser_features .inner {
  padding: 20px;
}

.ser_features .inner h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 18px;
}

.contect_bx p {
  font-size: 16px;
}

.service_types h3 {
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #0074ac;
  text-align: center;
}

.service_types .service_offer {
  background-color: #f1f1f1;
  /* text-align: justify; */
  padding: 15px;
  margin: 10px;
  border-radius: 12px;
  /* border-left: 8px solid #0074ac; */
  border-bottom: 8px solid #0074ac;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 290px;
}

.service_types .last {
  min-height: fit-content;
}
.service_types:last-child {
  /* background-color: red; */
}

.service_types .service_offer h4 {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 20px;
}
.contet-type .service_offer h4 {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 18px;
  /* color: #333; */
}

.fetaures_detail h3 {
  font-weight: 600;
  color: #0074ac;
  margin-top: 40px;
  margin-bottom: 22px;
}

.fetaures_detail p {
  font-size: 16px;
}

.services-features h3 {
  font-weight: 600;
  color: #333;
  margin-top: 60px;
  margin-bottom: 36px;
  text-align: center;
}

.services-features {
  margin: 40px 0px;
}
.services-features .content {
  padding: 15px;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #0074ac;
}

.services-features .content h4 {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
  background: #fff;
  padding: 7px;
  border-radius: 5px;
}

.services-features .content p {
  /* text-align: justify; */
  color: #fff;
}

.features h3 {
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 38px;
}
.features .box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 265px;
  padding: 15px;
  margin-bottom: 35px;
  border-radius: 12px;
  border-bottom: 7px solid #0074ac;
}
.features .box h5 {
  color: #0074ac;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.features .box p {
  text-align: justify;
}

.app_content h3 {
  margin-top: 60px;
  font-size: 34px;
  line-height: 45px;
  color: #0074ad;
  margin-bottom: 15px;
  font-weight: 600;
}

.app_service .service_offer {
  min-height: fit-content;
  /* border: 2px solid #0074ac; */
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  background: #fff;
  border-right: 7px solid #0074ac;
}

.app_service h4 span {
  margin-right: 5px;
}

.app_service .fa {
  color: #0074ad;
  font-size: 24px;
}

@media only screen and (max-width: 760px) {
  .services-features .content {
    margin-bottom: 20px;
  }
  .services-features .content h4 {
    font-size: 18px;
  }
  .features .box {
    min-height: 140px;
  }
}
@media only screen and (max-width: 600px) {
  .features h3 {
    margin-top: 40px;
  }
  .features .box h5 {
    font-size: 18px;
  }
  .features .box p {
    font-size: 15px;
  }
}

.blogs {
  padding-bottom: 70px;
  margin-top: 70px;
  font-family: 'Montserrat', sans-serif;
}

.blogs .blog-img img {
  width: 100%;
  border-radius: 0px;
  /* border-top-right-radius: 25px; */
  /* border-top-left-radius: 25px; */
}

.blogs .blog-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blogs .blog-grid {
  row-gap: 60px;
}
.blogs .blog-grid a,
.blogs .blog-grid p {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}
.blogs .author,
.blogs .cmts {
  margin-top: 22px;
}

.blogs .cmts {
  margin-right: 30px;
  color: #333;
}
.blogs .date {
  padding: 0px;
}

.blogs .card {
  padding: 0px;
  margin: 0px 20px;
  padding-bottom: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blogs .card .Read-more {
  margin: 15px 0px;
  font-weight: 600;
}

.blogs .date,
.blogs .title,
.blogs .disc,
.blogs .Read-more {
  padding: 0px 25px;
}

.blog-title {
  font-weight: 600;
  /* color: #3b48bc; */
  font-size: 32px;
  margin-bottom: 20px;
}

.blogs .blog-body .date {
  margin-top: 22px;
  margin-right: 70px;
  padding-left: 0px;
}

.blogs .blog-body .date,
.blogs .blog-body .author {
  font-size: 18px;
  color: #606060;
}

.blog-body {
  padding: 10px;
  width: 90%;
  margin: 0 auto;
}

.blog-body p {
  color: #848484;
  font-size: 16px;
  line-height: 1.7;
}

.blog-body .para {
  margin-top: 50px;
}

.blogs svg {
  width: 30px;
  display: none;
}

.blogs .pagi {
  margin-top: 40px;
}

.blogs .pagi .sm:hidden {
  display: none;
}

.blogs .pagi .rounded-l-md,
.blogs .pagi .rounded-r-md {
  display: none !important;
}

.blogs .pagi .border-gray-300 {
  border: none !important;
}
.blogs .pagi .font-medium {
  font-weight: bold !important;
}
.blogs .pagi .flex-1 {
  display: none;
}

.blogs .pagi .inline-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  color: #606060;
}

.blogs .pagi .text-gray-500 {
  background: #3b48bc !important;
  color: #fff !important;
}

.blogs .title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 22px;
  color: #333;
}

@media only screen and (max-width: 600px) {
  .blog-body {
    width: 95%;
  }

  .blogs .blog-body .date,
  .blogs .blog-body .author {
    font-size: 14px;
  }

  .blog-title {
    font-size: 25px;
  }

  .blog-body .para {
    margin-top: 20px;
  }

  .blog-body p {
    font-size: 14px;
  }
}

.portList .modal.fade .modal-dialog {
  /* top: 20%; */
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111111111111049;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111111 !important;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-dialog {
  max-width: 60%;
}
.modal-backdrop.show {
  opacity: 0.8;
}

.blogRptbox h3 {
  font-size: 23px;
  margin-top: 20px;
  font-weight: 600;
  color: #0d6fad;
  margin-bottom: 7px;
}

.statrup {
  max-width: 100%;
  position: absolute;
  right: 17%;
  bottom: -40%;
}

.owl-carousel .owl-item .statrup img {
  width: 270px;
  max-width: 100%;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.portfolio_home_in .owl-dots {
  display: none;
}

.discr {
  padding: 0px 25px;
  max-height: 104px;
  overflow: hidden;
  color: #333;
  font-weight: 500;
}

/* 
.blogs .blog-img img  {
max-height: 455px;
} */
.blogs .date {
  padding: 0px;
  padding-left: 30px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.pagi p {
  display: none;
}



.entry-single {
  width: 70%;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif ;
}

.entry-single h1, 
.entry-single h2, 
.entry-single h2 a, 
.entry-single h3, 
.entry-single h4, 
.entry-single h5, 
.entry-single h6 {
  font-family: 'Montserrat', sans-serif ;
  margin: 20px 0;
 font-weight: 600;
 color: #333;
} 

.entry-single h3 {
  font-size: 26px;
}

.entry-content h4 {
  font-size: 20px;
}


.entry-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.entry-img img {
  border-radius: 12px;
}

.entry-content p {
  font-size: 17px;
  /* color: #333; */
  line-height: 1.6;
  margin-bottom: 13px;
  /* color: #848484; */
  font-size: 16px;
  line-height: 1.8;
  color: #2f2f32;
  font-weight: 500;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.read_more button {
  background: #0075af;
  color: #fff;
  border: 0px;
  padding: 8px 28px;
  border-radius: 5px;
  letter-spacing: 0.2px;
  margin-top: 5px;
  margin-bottom: 30px;
}

.date,
.author {
  font-size: 17px;
  color: #333;
  margin-top: 22px;
  margin-right: 70px;
  padding-left: 0px;
  margin-bottom: 15px;
}

.cricle-menu input {
  position: absolute;
  display: none;
}
.cricle-menu .menu {
  margin: 0 auto;
  position: fixed;
  /* top: 50%; */
  right: 15%;
  width: fit-content;
  max-width: fit-content;
  /* margin-left: -25px; */
  /* margin-top: -25px; */
}

.cricle-menu .btn {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  position: absolute;
  overflow: hidden;
  cursor: pointer;
}

.material-icons.md-36 {
  font-size: 20px;
  color: #333;
}

.cricle-menu .btn {
  background: #fff;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cricle-menu .btn:not(:first-child) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: -2;

  -webkit-transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
  transition: all 0.6s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}

.cricle-menu .btn:nth-child(2) {
  top: 0px;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.cricle-menu .btn:nth-child(3) {
  top: 0px;
  left: 0px;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.cricle-menu .btn:nth-child(4) {
  left: 0px;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.cricle-menu .btn:nth-child(5) {
  top: 0px;
  left: 0px;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.cricle-menu .btn:nth-child(6) {
  top: 0px;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cricle-menu .btn:nth-child(7) {
  top: 0px;
  left: 0px;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.cricle-menu .btn:nth-child(8) {
  left: 0px;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.cricle-menu .btn:nth-child(9) {
  top: 0px;
  left: 0px;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(2) {
  top: -150px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  /* background-color: red; */
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(3) {
  top: -130px;
  left: -45px;
  /* left: -100px; */
  opacity: 1;
  /* background */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(4) {
  top: -90px;
  left: -90px;
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(5) {
  top: -40px;
  left: -110px;
  opacity: 1;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(6) {
  top: 10px;
  left: -100px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(7) {
  top: 55px;
  left: -82px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(8) {
  left: -55px;
  top: 90px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu input#toggle:checked ~ #show-menu .btn:nth-child(9) {
  top: 110px;
  /* left: -100px; */
  left: 0;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.cricle-menu .menuBtn,
.closeBtn {
  position: absolute;
  transition: all 0.3s ease;
}

.cricle-menu .closeBtn {
  transform: translateY(50px);
  opacity: 0;
}

.cricle-menu input#toggle:checked ~ #show-menu .btn .menuBtn {
  transform: translateY(-50px);
  opacity: 0;
}

.cricle-menu input#toggle:checked ~ #show-menu .btn .closeBtn {
  transform: translateY(0px);
  opacity: 1;
}

.stars {
  margin-top: 8px;
  margin-bottom: 15px;
}

.owl-carousel .owl-item .stars img {
  width: 17px;
  margin-right: 5px;
  display: inline-block;
}

.ftrlogo {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

/* .read_more {
  color: #fff;
  position: absolute;
  right: 0%;
  display: none;
} */

.view-all button {
  background: #0056b3;
  color: #fff;
  border: 0px;
  padding: 7px 22px;
  border-radius: 10px;
  margin-top: 20px;
  letter-spacing: 0.2px;
}

.port_text .know-more {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  background: #0056b3;
  padding: 5px 15px;
  border: 0px;
  border-radius: 3px;
  margin-top: 30px;
  cursor: pointer;
}

.overview_pages .read-more {
  position: relative;
}

.privacy {
  margin: 50px auto;
  margin-bottom: 80px;
}
.privacy h3 {
  margin-top: 22px;
  font-size: 24px;
  margin-bottom: 7px;
}

.privacy p,
.privacy li {
  color: #333;
  font-size: 17px;
}

.privacy ul {
  padding-top: 15px;
  padding-left: 34px;
}
.privacy ul li {
  list-style: disc;
}

.click_menu {
  display: none;
}

/*  scroll css section here*/

#up {
  border-radius: 7px;
  width: 40px;
  height: 40px;
  background-color: #0082c2;
  color: #fff;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0.5px 1px 5px 5px rgba(0, 0, 0, 0.5); */
  /* transition: 0.3s ease-out; */
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: bolder;
  position: fixed;
  bottom: 20px;
  right: 30px;
  display: none;
  z-index: 111111111111111111111111111111111111111;
}

#up:hover {
  background-color: #095cbb;
}

.popup-big-img {
  position: relative;
}

.popup-big-img .blogSin_img {
  min-height: 50vh;
  /* z-index: 2; */
}
.popup-big-img .blogSin_img img {
  min-height: 50vh;
  z-index: 2;
}

.small-img {
  position: relative;
}

.small-img .blogSin_img {
  /* min-height: 50vh; */
  /* z-index: 2; */
}
.small-img .blogSin_img img {
  min-height: 28vh;
  z-index: 2;
}

.modal-body p {
  color: #222;
  line-height: 1.6;
  font-size: 16px;
}
