/* @import url("https://fonts.googleapis.com/css2?family=Parisienne&display=swap"); */
*{
  font-family: "Spectral", serif;

}
body {
  overflow-x: hidden;

}


img {
  max-width: 100%;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}

.no-js #loader-wrapper {
  display: none;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #16a085;
  animation: spin 1.7s linear infinite;
  z-index: 11;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #b08441;
  z-index: 10;
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #333;
}

.pb-breadcrumb {
  height:120px;
  position: relative;
}
.pb-breadcrumb .breadcrumb-wrap {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  bottom: 5%;
  left: 2%;
  position: absolute;
  text-align: center;
}
.pb-breadcrumb .breadcrumb-wrap ul li {
  display: inline-block;
  color: #fff;
  font-size: 19px;
  font-family: "Parisienne", cursive !important;
}
.pb-breadcrumb .breadcrumb-wrap ul li a {
  color: #fff;
  font-family: "Parisienne", cursive !important;
}
.pb-breadcrumb .breadcrumb-wrap ul li a::after {
  content: "/";
  font-family: "Font Awesome 6 Free";
  transition: all 0.3s ease-in-out;
  margin: 0 10px;
  display: inline-block;
}

.pagination_of_list ul.pagination {
  justify-content: center;
}
.pagination_of_list ul li {
  margin: 0 5px;
}
.pagination_of_list ul li a {
  border-radius: 8px;
  padding: 5px 14px;
}
.pagination_of_list ul li a.page-link {
  border-radius: 8px !important;
}

.read_more {
  text-align: right;
  margin: 34px auto 10px;
}
@media (max-width: 992px) {
  .read_more {
    margin: 20px auto 10px;
  }
}
.read_more .read_more_atag {
  background-color: #b08441;
  padding: 11px 30px;
  color: #fff;
  border: 2px solid #b08441;
  border-radius: 8px;
  font-weight: 600;
}
.read_more .read_more_atag:hover {
  background-color: transparent;
  color: #b08441;
}
.read_more .read_more_atag_btn {
  padding: 0 10px !important;
  font-size: 12px;
}
.read_more .read_more_line {
  line-height: 33px !important;
}





.section_image_up {
  margin: 0 0 -1px 0;
}

.section_image_down {
  margin: -1px 0 0px 0;
}

.title_section {
  text-transform: capitalize;
  text-align: center;
  padding: 0 0 20px 0;
}
.title_section h4 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  /* font-family: "Parisienne", cursive !important; */
}
.title_section img {
  height: 25px;
  width: auto;
  margin: auto;
}

.heading .heading-title {
  color: #373053;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  text-transform: none;
  text-transform: uppercase;
}

.heading .separator,
.title_section .separator {

  position: relative;
  width: 74px;
  margin-top: 10px !important;
  margin: 0 auto;
  margin-bottom: 30px;
}

.heading .separator:before,
.title_section .separator:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 35px;
  height: 3px;
  background-color: #267faf;
}

.heading .separator span,
.title_section .separator span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 15px;
  height: 3px;
  margin-left: 3px;
  display: inline-block;
  background-color: #36d3be;
}

.heading .heading-desc,
.title_section .heading-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
  max-width: 75%;
  margin: 0 auto;
}

.owl-theme .owl-dots .owl-dot span{
  display: none;
}
.owl-dots {
  margin: auto;
  text-align: center;
}

.owl-dots .owl-dot {
  height: 10px;
  width: 20px;
  margin: 0 5px;
  background-color: #818181 !important;
  border-radius: 4px;
  transition: 0.3s linear;
}

.owl-dots .owl-dot.active {
  width: 38px;
  background: linear-gradient(45deg, #fb4275 0, #f35d46 100%);
}

header.site-header {
  position: absolute;
  width: 100%;
  z-index: 1080;
  background: #fff;
}
header.site-header .master-head {
  padding: 2px 0;
  border-radius: 5px;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head {
    margin: 10px 0px;
  }
}
header.site-header .master-head .menu-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap {
    justify-content: flex-start;
    grid-gap: 20px;
  }
}
header.site-header .master-head .menu-wrap a.show_on_small {
  display: none;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap a.show_on_small {
    display: block;
    border-left: 1px solid #ccc;
    padding-left: 10px;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap a.hide_on_small {
    display: none;
  }
}
header.site-header .master-head .menu-wrap a.logo-link {
  float: left;
}
/* @media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap a.logo-link {
    max-width: 230px;
  }
} */
header.site-header .master-head .menu-wrap a.logo-link img {
    height: 57px;
    margin: 4px 10px 4px 0;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain;

}
@media screen and (max-width: 1200px) {
  header.site-header .master-head .menu-wrap a.logo-link img {
    height: 40px;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap a.logo-link img {
    height: 50px;
  }
}
header.site-header .master-head .menu-wrap .logo_div {
  display: flex;
  align-items: flex-end;
}
header.site-header .master-head .menu-wrap .logo_div img {
  height: 54px;
}
header.site-header .master-head .menu-wrap .menu {
  text-align: right;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #b08441;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
    height: 100vh;
    transform: translate3d(100vw, 0, 0);
    overflow: auto;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu.menu-open {
    display: block;
    opacity: 1;
    width: 100%;
    visibility: visible;
    border-radius: 0;
    transform: translateZ(0);
    z-index: 999;
  }
}
header.site-header .master-head .menu-wrap .menu .close-toggle {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu .close-toggle {
    display: block !important;
    font-size: 1.5em;
  }
}
header.site-header .master-head .menu-wrap .menu ul {
  text-align: right;
  margin: 0;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: initial;
    text-align: center;
    max-height: 480px;
    overflow-y: auto;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li.menu-item-has-children::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li.menu-item-has-children span.fa-angle-down {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    display: block;
    width: 30px;
    color: #fff;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 5px;
    cursor: pointer;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li.menu-item-has-children ul {
    position: inherit;
    transform: none;
    width: 100%;
    display: none;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease-in-out;
    background-color: #fff;
    text-align: center;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li.menu-item-has-children ul li a {
    border: none;
    color: #3899CB;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li:last-child a {
    border-bottom: none;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li a {
    border-right: none;
    color: #fff;
  }
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .menu-wrap .menu ul.primary-menu li a::before {
    bottom: 3px;
  }
}
header.site-header .master-head .menu-wrap .menu ul li {
  display: inline-block;
}
header.site-header .master-head .menu-wrap .menu ul li a {
  color: #b92525;
  font-family: var(--semibold);
  display: block;
  padding: 0.8rem;
  letter-spacing: 0.1rem;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;

}
header.site-header .master-head .menu-wrap .menu ul li a:hover::before {
  visibility: visible;
  transform: scaleX(1);
}
header.site-header .master-head .menu-wrap .menu ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #d3ab5b;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
@media screen and (max-width: 1200px) {
  header.site-header .master-head .menu-wrap .menu ul li a {
    font-size: 12px;
  }
}
header.site-header .master-head .menu-wrap .menu ul li a img {
  height: 20px;
  width: 20px;
}
header.site-header .master-head .menu-wrap .menu ul li a #popOverBox {
  background: tomato;
  font-family: serif;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children {
  position: relative;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(1);
  transition: all 0.5s ease-in-out;
  top: 100%;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  color: #b92525;
  right: -2px;
  top: 10px;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul {
  position: absolute;
  left: auto;
  left: 0;
  top: 130%;
  min-width: 230px;
  padding: 0 15px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  border: none;
  background-color: #fff;
  z-index: 99;
  display: inherit;
  border-radius: 5px;
  text-align: left;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul li {
  display: block;
  padding: 5px 0;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul li:last-child a {
  border-bottom: none;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul li a {
  border-right: none;
  padding: 5px 0;
  display: block;
  border-bottom: 1px solid #3899CB;
  font-size: 0.875em;
  color: #000;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul li a:hover {
  border-right: none;
  padding: 5px 0;
  display: block;
  border-bottom: 1px solid #3899CB;
  font-size: 0.875em;
  color: #000;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul li a::before {
  bottom: 0;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children ul li a ::after {
  display: none;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-children span .fa-angle-down {
  display: none;
}
header.site-header .master-head .menu-wrap .menu ul li.menu-item-has-current a::before {
  visibility: visible;
  transform: none;
}
header.site-header .master-head .page-toggle-button {
  float: right;
  width: 34px;
  height: 34px;
  background: #343232;
  border-radius: 50%;
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  header.site-header .master-head .page-toggle-button {
    display: block;
    z-index: 1000;
    margin: 5px 0;
  }
}
header.site-header .master-head .page-toggle-button .hamburger-box {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
}
header.site-header .master-head .page-toggle-button .hamburger-box.open .harmburger-inner {
  background-color: transparent;
}
header.site-header .master-head .page-toggle-button .hamburger-box.open .harmburger-inner::before {
  top: -60px;
  left: -60px;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(60px, 60px, 0) rotate(45deg);
}
header.site-header .master-head .page-toggle-button .hamburger-box.open .harmburger-inner::after {
  top: -60px;
  right: -60px;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transform: translate3d(-60px, 60px, 0) rotate(-45deg);
}
header.site-header .master-head .page-toggle-button .hamburger-box .harmburger-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  transition: background-color 0.125s ease-in 0.175s;
  border-radius: 4px;
  background-color: #fff;
}
header.site-header .master-head .page-toggle-button .hamburger-box .harmburger-inner::after {
  content: "";
  position: absolute;
  width: inherit;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  top: 7px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
}
header.site-header .master-head .page-toggle-button .hamburger-box .harmburger-inner::before {
  content: "";
  position: absolute;
  width: inherit;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  top: -7px;
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
}
header.affix {
  position: fixed;
  z-index: 100;
  width: 100%;
  border-radius: 0;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 10px 8px 11px rgba(0, 0, 0, 0.68);
  transition: all 1s ease;
  color: #fff;
}


.our_testimonials_banner .testimonail_devide {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 50px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .our_testimonials_banner .testimonail_devide {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    text-align: center;
  }
}
.our_testimonials_banner .testimonail_devide img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.our_testimonials_banner .testimonail_devide .banner-content h1 {
  font-size: 42px;
  line-height: 1.1;
}
@media screen and (max-width: 1199px) {
  .our_testimonials_banner .testimonail_devide .banner-content h1 {
    font-size: 39px;
  }
}
.our_testimonials_banner .testimonail_devide .banner-content h1 span {
  color: #fb4275;
}
.our_testimonials_banner .owl-carousel .owl-dots {
  /* right: 100px; */
  /* position: absolute; */
  /* bottom: 0; */
  /* top: 50%; */
  /* right: 0; */
  text-align: center;
}
/* .our_testimonials_banner .owl-carousel .owl-dots button.owl-dot {
  display: block;
  height: 20px;
  width: 10px;
  border-radius: 5px;
  margin: 10px 0;
}
.our_testimonials_banner .owl-carousel .owl-dots button.owl-dot.active {
  height: 38px;
} */

.all_banner {
  margin: 50px auto;
  /* min-height: 400px; */
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
}

.about .heading-desc {
  font-size: 16px;
}

@media only screen and (min-width: 1199px) {
  .about .margin-custom {
    margin-top: -75px;
  }
}
.about .heading .separator {
  margin: 0;
}

.about .about-list {
  margin-top: 2em;
  padding: 0 15px;
}

.about .about-list .col {
  padding: 5px;
}

.about .about-list .about-item {
  margin-bottom: 30px;
  position: relative;
  border-radius: 4px;
  padding: 30px 15px;
  box-shadow: 0 0 40px rgba(101, 93, 93, 0.16);
  overflow: hidden;
  text-align: center;
  border-bottom: 4px solid #e1e1e1;
}

@media only screen and (max-width: 480px) {
  .about .about-list .about-item {
    padding: 5px;
  }
}
.about .about-list .about-item .about-item-icon {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto 14px auto;
  text-align: center;
}

.about .about-list .about-item .about-item-icon i {
  font-size: 40px;
}

.about .about-list .about-item .about-item-title {
  color: #373053;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
}

/* //banner ends here */

/* oldbanner */
/* .banner {
  margin: 0 auto 40px auto;
}
.banner .overlay {
  background: red;
}
.banner img {
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1600px) {
  .banner img {
    height: 450px;
  }
}
@media (max-width: 800px) {
  .banner img {
    height: 400px;
  }
}
@media (max-width: 700px) {
  .banner img {
    height: 340px;
  }
}
@media (max-width: 560px) {
  .banner img {
    height: 280px;
  }
}
@media (max-width: 435px) {
  .banner img {
    height: 210px;
  }
}
@media (max-width: 374px) {
  .banner img {
    height: 178px;
  }
} */
/* .banner .owl-theme .owl-dots .owl-dot span {
  background-color: #959595;
}
.banner .owl-theme .owl-dots .owl-dot.active span {
  background-color: #b08441;
} */
.banner {
    margin: 0 auto 40px auto;
  }
  @media screen and (max-width: 992px){
    .banner {
        margin: 10px auto 40px auto;
    }
    }

  .banner figure {
    position: relative;
  }
  .banner figure img {

    height: 583px;
    object-fit: cover;
}
@media (max-width: 1600px){

.banner figure img {
    /* height: 450px; */
    height: 583px;
}
}
@media (max-width: 1400px){

.banner figure img {

    height: 502px;
}
}
@media (max-width: 1200px){

.banner figure img {

    height: 421px;
}
}
@media (max-width: 992px){

.banner figure img {

    height: 313px;
}
}
@media (max-width: 767px){

.banner figure img {

    height: 232px;
}
}
@media (max-width: 558px){

.banner figure img {

    height: 240px;
}
}
@media (max-width: 500px){

.banner figure img {

    height: 214px;
}
}
@media (max-width: 450px){

.banner figure img {

    height: 192px;
}
}
@media (max-width: 400px){

.banner figure img {

    height: 169px;
}
}
@media (max-width: 350px){

.banner figure img {

    height: 147px;
}
}
.banner figure .banner-content {
    /* background: rgba(0, 0, 0, .6); */
    padding: 10px;
}
  .banner figure .overlay {
    background: rgba(0, 0, 0, 0.62);

    width: 100%;
    /* height: 100%; */
    position: absolute;
    /* top: 0; */
    bottom: 0;
    left: 0;
    right: 0;
  }
  /* .banner figure .banner-content {
    margin: 40% 15px;
  }
  @media (max-width: 1600px) {
    .banner figure .banner-content {
      margin: 25% 15px;
    }
  }
  @media (max-width: 992px) {
    .banner figure .banner-content {
      margin: 15% 15px;
    }
  } */
  .banner figure .banner-content h1{
    color: #fff;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
line-clamp: 1;
-webkit-box-orient: vertical;
font-size: 27px;
line-height: 40px;
margin:0;}
  .banner figure .banner-content p,
  .banner figure .banner-content h1 {
    color: #fff;
  }
  @media screen and (max-width: 992px){
    .banner figure .banner-content {
        /* background: rgba(0, 0, 0, .6); */
        padding: 6px 10px;
    }
    .banner figure .banner-content h1{
    font-size: 17px;
    line-height: 32px;
    }
    }
    @media screen and (max-width: 500px){
        .banner figure .banner-content {
            /* background: rgba(0, 0, 0, .6); */
            padding: 2px 10px;
        }
    .banner figure .banner-content h1{
    font-size:14px;
    line-height: 27px;
    }
    }
  @media (max-width: 400px) {
    .banner figure .banner-content p {
      font-size: 14px;
    }

  }
  .banner .owl-theme .owl-dots .owl-dot span {
    background-color: #959595;
  }
  .banner .owl-theme .owl-dots .owl-dot.active span {
    background-color: #b08441;
  }

.about_section_start {
  margin: 40px auto;
}
.about_section_start .about_section {
  padding: 30px 0;
  background-color: rgba(176, 132, 65, 0.1098039216);
}
.about_section_start .about_section .about_body_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .about_section_start .about_section .about_body_section {
    grid-gap: 15px;
  }
}
@media (max-width: 767px) {
  .about_section_start .about_section .about_body_section {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.about_section_start .about_section .about_body_section .left_image_section img {
  width: 100%;
  height: auto;
  max-height: 400px;
  min-height: 100px;
  border-radius: 16px;
}
.about_section_start .about_section .about_body_section p {
  font-size: 15px;
  line-height: 36px;
  text-align: justify;
}
@media (max-width: 1200px) {
  .about_section_start .about_section .about_body_section p {
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  .about_section_start .about_section .about_body_section p {
    line-height: 28px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .about_section_start .about_section .about_body_section p {
    line-height: 35px;
    font-size: 15px;
  }
}

.words_from_board_section {
  margin: 40px auto;
}
.words_from_board_section #testimonials-section {
  background-size: cover;
  background-attachment: fixed;
  color: #a1aaad;
  font-size: 15px;
}
.words_from_board_section #testimonial {
  text-align: center;
}
.words_from_board_section #testimonial .item {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.words_from_board_section #testimonial .item .board_member {
  color: #b08441;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0 0;
  text-transform: uppercase;
}
.words_from_board_section #testimonial .item .position {
  text-transform: capitalize;
}
.words_from_board_section #testimonial .item .images {
  margin: auto;
  text-align: center;
}
.words_from_board_section #testimonial .item .images img {
  height: 120px;
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin: auto;
  border: 2px solid #ccc;
  padding: 5px;
}
.words_from_board_section #testimonial .item p {
  font-weight: 400;
  margin: 15px 0;
}
.words_from_board_section hr {
  height: 3px;
  width: 60px;
  position: relative;
  background: #a5a5a5;
  border: 0;
  margin-bottom: 30px;
}
/* .words_from_board_section .owl-theme .owl-dots .owl-dot span {
  background-color: #959595;
}
.words_from_board_section .owl-theme .owl-dots .owl-dot.active span {
  background-color: #b08441;
} */
.words_from_board_section .owl-nav {
  position: absolute;
  top: 35%;
  width: 106%;
  left: -3%;
}
.words_from_board_section .owl-nav button:hover {
  background-color: transparent;
}
.words_from_board_section .owl-nav button span {
  font-size: 35px;
  font-weight: 600;
}
.words_from_board_section .owl-prev {
  float: left;
}
.words_from_board_section .owl-next {
  float: right;
}

.events_and_activites_start {
  margin: 40px auto;
}
.events_and_activites_start .events_and_activites {
  background-color: rgba(176, 132, 65, 0.1098039216);
  padding: 30px 0;
}
.events_and_activites_start .events_and_activites .events_and_activites_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
@media (max-width: 992px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list {
    grid-template-columns: 1fr;
  }
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.46);
  border-radius: 8px;
  background: #fff;
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event:hover {
  box-shadow: 3px 4px 13px 0px rgba(0, 0, 0, 0.46);
}
@media (max-width: 992px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 550px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event {
    grid-template-columns: 1fr;
  }
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 992px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section {
    border-radius: 8px 0px 0 8px;
  }
}
@media (max-width: 550px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section {
    border-radius: 8px 8px 0 0;
  }
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: transform 2s ease-in-out;
}
@media (max-width: 992px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section img {
    height: 150px;
    border-radius: 8px 0px 0 8px;
  }
}
@media (max-width: 550px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section img {
    max-height: 400px;
    min-height: 100px;
    height: auto;
  }
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .image_section img:hover {
  transform: scale(1.9);
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description {
  padding: 10px;
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description .event_location {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 4px;
}
@media (max-width: 400px) {
  .events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description .event_location {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description .event_location .event_section span {
  color: #b08441;
  font-size: 12px;
  font-weight: 600;
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description .read_more {
  margin: 10px auto 10px;
}
.events_and_activites_start .events_and_activites .events_and_activites_list .single_event .description .read_more .read_more_atag {
  padding: 4px 6px;
  font-size: 12px;
}

.our_board_member_section {
  margin: 40px auto;
}
.our_board_member_section.memorandom {
  margin: 0;
}
.our_board_member_section.memorandom .staff-box img {
  max-width: 100px;
  margin: -50px auto 18px auto;
}
.our_board_member_section.memorandom .staff-box .position {
  margin: auto;
}
.our_board_member_section .staff-wrapper {
  margin: 0 auto 30px auto;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  padding: 2px 10px;
  gap: 30px;
  justify-items: center;
}
@media (max-width: 991px) {
  .our_board_member_section .staff-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .our_board_member_section .staff-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.our_board_member_section .staff-box {
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.46);
  padding: 0.6rem;
  padding-top: 0;
  text-align: center;
  width: 100%;
  border-radius: 8px;
  margin-top: 42px;
}
.our_board_member_section .staff-box:hover {
  box-shadow: 3px 4px 13px 0px rgba(0, 0, 0, 0.46);
}
.our_board_member_section .staff-box .position {
  color: #b08441;
  font-size: 15px;
  font-weight: 500;
  margin: 7px auto 20px;
  text-transform: capitalize;
}
.our_board_member_section .staff-box img {
  border-radius: 50%;
  border: solid 3px #b08441;
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1/1;
  margin: -35px auto 18px auto;
}
.our_board_member_section .staff-box h6 {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
}
.our_board_member_section .staff-box p, .our_board_member_section .staff-box a {
  display: block;
  font-size: 16px;
  margin: 0.5em 0;
  line-height: 1.05;
}
.our_board_member_section .staff-box ul {
  padding: 0;
}
.our_board_member_section .staff-box ul li {
  list-style: none;
  position: relative;
  list-style: none;
  display: inline-block;
  width: 27px;
  height: 16px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
  text-align: center;
}
.our_board_member_section .staff-box ul li::before, .our_board_member_section .staff-box ul li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #b08441;
}
.our_board_member_section .staff-box ul li::before {
  transform: rotate(60deg);
}
.our_board_member_section .staff-box ul li::after {
  transform: rotate(-60deg);
}
.our_board_member_section .staff-box ul li:hover {
  transform: translateY(-30px);
}
.our_board_member_section .staff-box ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  background-color: #b08441;
}
.our_board_member_section .staff-box ul li a i {
  padding: 0;
}
.our_board_member_section .staff-box ul li:nth-of-type(1) a, .our_board_member_section .staff-box ul li:nth-of-type(1)::before, .our_board_member_section .staff-box ul li:nth-of-type(1)::after {
  background: #3b5999;
}
.our_board_member_section .staff-box ul li:nth-of-type(2) a, .our_board_member_section .staff-box ul li:nth-of-type(2)::before, .our_board_member_section .staff-box ul li:nth-of-type(2)::after {
  background: #55acee;
}
.our_board_member_section .staff-box ul li:nth-of-type(3) a, .our_board_member_section .staff-box ul li:nth-of-type(3)::before, .our_board_member_section .staff-box ul li:nth-of-type(3)::after {
  background: #000;
}

.membership_start {
  margin: 40px auto;
}
.membership_start .membership {
  background-color: rgba(176, 132, 65, 0.1098039216);
  padding: 30px 0;
}
.membership_start .membership .membership_detail h4 {
  line-height: 40px;
  font-size: 20px;
  font-weight: 600;
}
.membership_start .membership .membership_detail .read_more {
  text-align: center;
}

.gallery_section {
  margin: 50px auto;
}
.gallery_section .main1 {

  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.gallery_section .main1 .card {
  color: #000;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.gallery_section .main1 .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #fff;
  overflow: hidden;
}
.gallery_section .main1 .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     transition: transform 2s ease-in-out;

}
.gallery_section .main1 .card-image img:hover {
  transform: scale(1.9);

}
.gallery_section .main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

@media (max-width: 767px) {
  .gallery_section .main {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery_section .main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .gallery_section .main {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery_section .main .card {
  color: #000;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.gallery_section .main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #fff;
  overflow: hidden;
}
.gallery_section .main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     transition: transform 2s ease-in-out;

}
.gallery_section .main .card-image img:hover {
  transform: scale(1.9);

}
@media only screen and (max-width: 450px) {
  .gallery_section .main .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}

.filmy_khabar_section {
  margin: 40px 0;
}
.filmy_khabar_section .filmy_khabar_start .filmy_section_devide {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .filmy_khabar_section .filmy_khabar_start .filmy_section_devide {
    grid-template-columns: 1fr;
  }
}
.filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section {
  background-color: rgba(176, 132, 65, 0.1098039216);
  text-align: right;
  padding: 20px;
  box-shadow: 0px 0px 3px 0px rgba(147, 145, 145, 0.75);
  border-radius: 8px 0 0 8px;
}
@media only screen and (max-width: 575px) {
  .filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section {
    border-radius: 8px 8px 0 0px;
    box-shadow: none;
  }
}
@media only screen and (max-width: 991px) {
  .filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section .read_more .read_more_atag {
    padding: 3px 10px;
    font-size: 13px;
  }
}
.filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section h5 {
  font-weight: 200;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section h5 {
    font-size: 14px;
  }
}
.filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
}
@media only screen and (max-width: 991px) {
  .filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section h3 {
    font-size: 15px;
  }
}
.filmy_khabar_section .filmy_khabar_start .filmy_section_devide .des_section p {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.filmy_khabar_section .filmy_khabar_start .filmy_section_devide .large_image_section img {
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 8px 8px 0;
}
@media only screen and (max-width: 575px) {
  .filmy_khabar_section .filmy_khabar_start .filmy_section_devide .large_image_section img {
    max-height: 500px;
    min-height: 100px;
    height: auto;
    border-radius: 0px 0px 8px 8px;
  }
}

.vedio_section_start {
  margin: 40px auto;
}
.vedio_section_start .Vedio {
  background-color: rgba(176, 132, 65, 0.1098039216);
  padding: 30px 0;
}
/* .vedio_section_start .Vedio .video_sec {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-gap: 10px;
} */
/* @media only screen and (max-width: 475px) {
  .vedio_section_start .Vedio .video_sec {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
} */
.vedio_section_start .Vedio .video_sec figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.vedio_section_start .Vedio .video_sec figure img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     transition: transform 2s ease-in-out;

}
.vedio_section_start .Vedio .video_sec figure img:hover {
  transform: scale(1.9);


}
.vedio_section_start .Vedio .video_sec figure .icons i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  color: #dd4b39;
  text-align: center;
  transform: translate(-50%, -50%);
}
.vedio_section_start .Vedio .video_sec .left img {
  height: 235px;
}
@media only screen and (max-width: 991px) {
  .vedio_section_start .Vedio .video_sec .left img {
    height: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .vedio_section_start .Vedio .video_sec .left img {
    height: 200px;
  }
}
@media only screen and (max-width: 475px) {
  .vedio_section_start .Vedio .video_sec .left img {
    height: auto;
    max-height: 300px;
    min-height: 100px;
  }
}
.vedio_section_start .Vedio .video_sec .right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
@media only screen and (max-width: 475px) {
  .vedio_section_start .Vedio .video_sec .right {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.vedio_section_start .Vedio .video_sec .right img {
  height: 200px;
}
@media only screen and (max-width: 991px) {
  .vedio_section_start .Vedio .video_sec .right img {
    height: 135px;
  }
}
@media only screen and (max-width: 767px) {
  .vedio_section_start .Vedio .video_sec .right img {
    height: 97px;
  }
}
@media only screen and (max-width: 475px) {
  .vedio_section_start .Vedio .video_sec .right img {
    height: auto;
    max-height: 300px;
    min-height: 100px;
  }
}

.contact-page-sec {
  min-height: 100vh;
}
.contact-page-sec label {
  text-transform: capitalize;
}
.contact-page-sec ul {
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .contact-page-sec ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 525px) {
  .contact-page-sec ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-page-sec ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  width: 37px;
  height: 20px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
  text-align: center;
}
.contact-page-sec ul li i {
  padding: 0;
}
.contact-page-sec ul li:hover {
  transform: translateY(-30px);
}
.contact-page-sec ul li::before, .contact-page-sec ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #b08441;
}
.contact-page-sec ul li::before {
  transform: rotate(60deg);
}
.contact-page-sec ul li::after {
  transform: rotate(-60deg);
}
.contact-page-sec ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  background-color: #b08441;
}
.contact-page-sec .contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-sec .contact-page-form.contact-form input {
  margin-bottom: 5px;
}
.contact-page-sec .contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-sec .contact-page-form.contact-form input[type=submit] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-page-sec .contact-page-form input {
  background: rgba(244, 239, 242, 0.6705882353) none repeat scroll 0 0;
  border: 1px solid rgba(244, 239, 242, 0.6705882353);
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 8px;
}
.contact-page-sec .contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}
.contact-page-sec .single-input-field textarea {
  background: rgba(244, 239, 242, 0.6705882353) none repeat scroll 0 0;
  border: 1px solid rgba(244, 239, 242, 0.6705882353);
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 8px;
}
.contact-page-sec .single-input-fieldsbtn input[type=submit] {
  background: #071c34 none repeat scroll 0 0;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.contact-page-sec .single-input-fieldsbtn input[type=submit]:hover {
  background: #071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color: #071c34;
}
.contact-page-sec .single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-sec .contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}
.contact-page-sec .contact-page-map {
  margin-top: 36px;
}
.contact-page-sec .contact-page-form form {
  padding: 20px 15px 0;
}

footer .top_footer_bg {
  background: #b08441;
  padding: 20px 0 0;
  margin: -1px 0 0 0;
}
footer .top_footer_bg .top_footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 991px) {
  footer .top_footer_bg .top_footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  footer .top_footer_bg .top_footer {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer .top_footer_bg .top_footer h4 {
  color: #fff;
  text-transform: capitalize;
  display: none;
}
footer .top_footer_bg .top_footer h4 hr {
  border: none;
  border-bottom: 2px solid #bec8c9;
  width: 80%;
  display: none;
}
footer .top_footer_bg .top_footer ul li {
  list-style: none;
  color: #fff;
  padding: 10px 0;
  text-transform: capitalize;
}
footer .top_footer_bg .top_footer ul li i {
  padding: 0 20px 0 0;
}
footer .top_footer_bg .top_footer ul li a {
  color: #fff;
}
footer .top_footer_bg .top_footer .Social-media {
  margin: 80px auto;
  width: 100px;
}
@media screen and (max-width: 991px) {
  footer .top_footer_bg .top_footer .Social-media {
    margin: 80px 0;
  }
}
footer .top_footer_bg .top_footer .Social-media ul {
  transform: translate(0, -50%);
  white-space: nowrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 29px;
}
footer .top_footer_bg .top_footer .Social-media ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  width: 30px;
  height: 19px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
}
footer .top_footer_bg .top_footer .Social-media ul li i {
  padding: 0;
}
footer .top_footer_bg .top_footer .Social-media ul li:first-child {
  grid-row-start: 1;
  grid-column: 2/span 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-child(2) {
  grid-row-start: 1;
  grid-column: 4/span 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-child(3) {
  grid-row-start: 2;
  grid-column: 1/span 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-child(4) {
  grid-row-start: 2;
  grid-column: 3/span 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-child(5) {
  grid-row-start: 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-child(6) {
  grid-row-start: 3;
  grid-column: 2/span 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-child(7) {
  grid-row-start: 3;
  grid-column: 4/span 2;
}
footer .top_footer_bg .top_footer .Social-media ul li:hover {
  transform: translateY(-30px);
}
footer .top_footer_bg .top_footer .Social-media ul li::before, footer .top_footer_bg .top_footer .Social-media ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
footer .top_footer_bg .top_footer .Social-media ul li::before {
  transform: rotate(60deg);
}
footer .top_footer_bg .top_footer .Social-media ul li::after {
  transform: rotate(-60deg);
}
footer .top_footer_bg .top_footer .Social-media ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(1) a, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(1)::before, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(1)::after {
  background: #3b5999;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(2) a, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(2)::before, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(2)::after {
  background: #55acee;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(3) a, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(3)::before, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(3)::after {
  background: #dd4b39;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(4) a, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(4)::before, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(4)::after {
  background: #000;
}
footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(5) a, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(5)::before, footer .top_footer_bg .top_footer .Social-media ul li:nth-of-type(5)::after {
  background: #125688;
}
footer .copy_right_footer {
  background: #784D0C;
  text-align: center;
  color: #fff;
  padding: 3px 25px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
@media only screen and (max-width: 600px) {
  footer .copy_right_footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
footer .copy_right_footer p {
  margin: 0;
}
footer .copy_right_footer a {
  color: #fff;
  text-decoration: underline;
}
footer .copy_right_footer a:hover {
  color: #1ae9b9;
}

.contact_my_detail .join_us_section {
  margin: 100px auto;
  display: flex;
  grid-gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact_my_detail .join_us_section {
    display: grid;
    justify-content: space-evenly;
  }
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  align-items: center;
  text-align: center;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card i {
  font-size: 20px;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card i.fa-youtube {
  color: #dd4b39;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card i.fa-facebook-f {
  color: #3b5999;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card i.fa-twitter {
  color: #55acee;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card i.fa-instagram {
  color: #125688;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card i.fa-tiktok {
  color: #000;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card a {
  border: 1px solid #b08441;
  color: #b08441;
  font-weight: 400;
  padding: 1px 9px;
  border-radius: 4px;
  border-radius: 4px;
  margin: 10px 0 0 0;
  transition: 1s;
}
.contact_my_detail .join_us_section .join_us_right .ss-wrap .ss-card a:hover {
  background-color: #b08441;
  color: #fff;
}
.contact_my_detail label {
  margin-bottom: 0 !important;
  font-size: 18px;
}
.contact_my_detail .form_main span {
  color: #e10707;
}
.contact_my_detail .adress h6,
.contact_my_detail .adress h5 {
  font-size: 20px;
  font-weight: 300;
  /* padding-top:5px; */
  opacity: 0.6;
  /* text-align: justify; */
}
.contact_my_detail .adress h6 i,
.contact_my_detail .adress h5 i {
  padding-right: 20px;
}
.contact_my_detail .contactus1 {
  margin-top: 50px;
  /* background:#fcfcfe; */
}
.contact_my_detail .contactus form_main {
  width: 100%;
}
.contact_my_detail .contactus .form_main h4 {
  font-family: roboto;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: 3px;
  text-transform: uppercase;
}
.contact_my_detail .contactus .heading {
  border-bottom: 1px solid #fcab0e;
  padding-bottom: 9px;
  position: relative;
}
.contact_my_detail .contactus .heading span {
  background: #b08441 none repeat scroll 0 0;
  bottom: -2px;
  height: 3px;
  left: 0;
  position: absolute;
  width: 75px;
}
.contact_my_detail .contactus .form {
  border-radius: 7px;
  padding: 6px;
}
.contact_my_detail .contactus .txt[type=text],
.contact_my_detail .contactus .txt[type=email] {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px dotted #ccc;
  margin: 0px 0px 21px 0px;
  padding: 6px 12px;
  width: 100%;
  background: transparent;
}
.contact_my_detail .contactus .txt_3[type=text] {
  margin: 10px 0 0px 0;
  padding: 4px 0 10px 5px;
  width: 100%;
  border: 1px solid #f0f0f0;
}
.contact_my_detail .contactus .txt2[type=submit] {
  background: #b08441 none repeat scroll 0 0;
  border: 1px solid #b08441;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  margin: 20px 0;
  border-radius: 5px;
  padding: 10px 20px;
  text-transform: uppercase;
  width: 100%;
}
.contact_my_detail .contactus .txt4 {
  background: #b08441 none repeat scroll 0 0;
  /* border: 1px solid #4f5c04; */
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  /* line-height: 33px; */
  /* margin: -5px 10px; */
  /* padding: 0; */
  margin: -10px 10px;
  padding: 10px 20px;
  text-transform: uppercase;
  /* width: 29%; */
}
.contact_my_detail .contactus .txt2:hover {
  background: transparent none repeat scroll 0 0;
  color: #b08441;
  transition: all 0.5s ease 0s;
}
.contact_my_detail .contact_header {
  text-align: left;
  margin-bottom: 20px;
}
.contact_my_detail .contact-content ul li {
  position: relative;
  padding: 5px 0 5px 60px;
  margin-bottom: 28px;
}
.contact_my_detail .contact-content ul li i {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #b08441;
  border: 1px solid #cccccc;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  transition: 2s;
}
.contact_my_detail .contact-content ul li:hover i {
  background-color: #b08441;
  color: #fff;
  border-color: #b08441;
}

.our_team_page h1 {
  font-family: "Parisienne", cursive !important;
}
.our_team_page ul li a {
  transform: rotate(-45deg);
}
.our_team_page .overlay {
  width: calc(100% - 20px);
  top: 10px;
  height: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
}
.our_team_page .active {
  opacity: 1;
  border-color: #818cf8;
}
.our_team_page .active .overlay {
  background-color: rgba(129, 140, 248, 0.7019607843);
}
.our_team_page .active ul {
  opacity: 1;
}
.our_team_page .active a {
  color: #1f2937;
}
.our_team_page ul {
  max-width: 100px;
}
.our_team_page img {
  aspect-ratio: 1/1;
}

.our_objectives {
  margin: 50px auto;
}
.our_objectives p {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

.about_us_section_page .image_des {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-gap: 40px;
  margin: 50px auto;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .about_us_section_page .image_des {
    grid-template-columns: 1fr;
  }
}
.about_us_section_page .image_des .image_section {
  vertical-align: middle;
}
.about_us_section_page .image_des .image_section img {
  max-height: 300px;
  min-height: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.about_us_section_page .image_des .description_section p {
  line-height: 42px;
  text-align: justify;
}
.about_us_section_page .our_mission {
  margin: 50px auto;
  /* .owl-item .circle:before {
      content: counters(my-sec-counter, ".", decimal-leading-zero);
  } */
}
.about_us_section_page .our_mission .workflow-item {
  display: flex;
  flex-direction: column;
  margin-top: 5em;
}
.about_us_section_page .our_mission .owl-item:nth-child(odd) .indicator {
  order: 2;
  flex-direction: column-reverse;
}
.about_us_section_page .our_mission .owl-item:nth-child(odd) img {
  order: 1;
}
.about_us_section_page .our_mission .owl-item:nth-child(odd) h5 {
  order: 3;
}
.about_us_section_page .our_mission .owl-item:nth-child(even) .indicator {
  order: 1;
}
.about_us_section_page .our_mission .owl-item:nth-child(even) img {
  order: 2;
}
.about_us_section_page .our_mission .owl-item:nth-child(even) h5 {
  order: 3;
}
.about_us_section_page .our_mission .owl-item h5 {
  margin-top: 2em;
  text-align: center;
  font-size: 16px;
}
.about_us_section_page .our_mission .owl-item .indicator {
  position: relative;
  display: flex;
  flex-direction: column;
}
.about_us_section_page .our_mission .owl-item .circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  line-height: 5px;
  text-align: center;
  background: #05b59d;
  margin: 0 auto;
  padding: 15px 10px;
  z-index: 2;
}
.about_us_section_page .our_mission .indicator .vl {
  border-left: 3px solid #05b59d;
  height: 35px;
  margin: 0 auto;
  width: 3px;
  background: #05b59d;
}
.about_us_section_page .our_mission .owl-item img {
  height: 150px;
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
  margin: 0 auto;
}
.about_us_section_page .words_from_board {
  margin: 50px auto;
  background-image-position: center !important;
  background-size: cover !important;
  height: 500px;
  width: 100%;
}
.about_us_section_page .words_from_board .world_cont {
  position: relative;
  height: 500px;
}
.about_us_section_page .words_from_board .world_cont .founder-word {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
}
@media screen and (max-width: 992px) {
  .about_us_section_page .words_from_board .world_cont .founder-word {
    width: 100%;
    top: 99%;
    transform: translateY(-99%);
  }
}
.about_us_section_page .words_from_board .world_cont .founder-word h4 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media screen and (max-width: 400px) {
  .about_us_section_page .words_from_board .world_cont .founder-word h4 {
    font-size: 30px;
  }
}
.about_us_section_page .words_from_board .world_cont .founder-word h6 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 400px) {
  .about_us_section_page .words_from_board .world_cont .founder-word h6 {
    font-size: 16px;
  }
}
.about_us_section_page .words_from_board .world_cont .founder-word p {
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 400px) {
  .about_us_section_page .words_from_board .world_cont .founder-word p {
    font-size: 14px;
  }
}
.about_us_section_page .company_services {
  margin: 50px auto;
}
.about_us_section_page .company_services .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media screen and (max-width: 767px) {
  .about_us_section_page .company_services .row {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .about_us_section_page .company_services .row {
    grid-template-columns: 1fr;
  }
}
.about_us_section_page .company_services .service {
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
}
.about_us_section_page .company_services .service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #b08441;
}
.about_us_section_page .company_services .service h5 {
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.about_us_section_page .company_services .service:hover {
  background: #b08441;
  color: #fff;
  transform: scale(1.05);
}
.about_us_section_page .company_services .service:hover i {
  color: #fff;
}

.membership_section_page {
  margin: 50px auto;
}
.membership_section_page .membership_list {
  margin: 150px auto;
  display: flex;
  justify-content: center;
  grid-gap: 40px;
}
@media screen and (max-width: 540px) {
  .membership_section_page .membership_list {
    display: grid;
    grid-gap: 175px;
  }
}
.membership_section_page .membership_list .membership_new {
  position: relative;
  list-style: none;
  display: inline-block;
  width: 350px;
  height: 200px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
  /* Creating pseudo-class */
  /* Align them in such a way
  that they form a hexagon */
}
.membership_section_page .membership_list .membership_new .image_section img {
  width: 150px;
  height: 150px;
  margin: auto auto 10px;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .membership_section_page .membership_list .membership_new .image_section img {
    width: 85px;
    height: 85px;
    margin: auto auto 6px;
  }
}
.membership_section_page .membership_list .membership_new .image_section h3 {
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .membership_section_page .membership_list .membership_new {
    width: 350px;
    height: 185px;
  }
}
@media screen and (max-width: 767px) {
  .membership_section_page .membership_list .membership_new {
    width: 225px;
    height: 129px;
  }
}
.membership_section_page .membership_list .membership_new:hover {
  transform: translateY(-30px);
}
.membership_section_page .membership_list .membership_new::before, .membership_section_page .membership_list .membership_new::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #b08441;
}
.membership_section_page .membership_list .membership_new::before {
  transform: rotate(60deg);
}
.membership_section_page .membership_list .membership_new::after {
  transform: rotate(-60deg);
}
.membership_section_page .membership_list .membership_new a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #f4df97;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  background: #b08441;
}

.gallery-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
@media screen and (max-width: 500px) {
  .gallery-group {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
  }
}

.inner_body_gallery {
  margin: 40px auto;
}
.inner_body_gallery .gall .boxaa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin: 18px auto;
}
@media only screen and (max-width: 992px) {
  .inner_body_gallery .gall .boxaa {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 500px) {
  .inner_body_gallery .gall .boxaa {
    grid-template-columns: 1fr;
  }
}
.inner_body_gallery .gall .card {
  position: relative;
  width: 100%;
  height: 220px;
  background: #fff;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.inner_body_gallery .gall .card::before, .inner_body_gallery .gall .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #fff;
  color: #000;
  transition: 0.5s;
}
.inner_body_gallery .gall .card:hover:before {
  transform: rotate(20deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.inner_body_gallery .gall .card:hover:after {
  transform: rotate(10deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.inner_body_gallery .gall .card .imgBx {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: #222;
  transition: 0.5s;
  z-index: 1;
}
.inner_body_gallery .gall .card:hover .imgBx {
  bottom: 10px;
}
.inner_body_gallery .gall .card .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner_body_gallery .gall .details {
  text-align: center;
}
.inner_body_gallery .gall .details h4 {
  margin: 20px auto;
  padding: 0;
  font-weight: 600;
  font-size: 18px;
  color: #b08441;
  text-transform: capitalize;
}

.inner-body {
  padding: 20px 50px;
}
@media screen and (max-width: 1024px) {
  .inner-body {
    padding: 20px 0px;
  }
}
.inner-body .tabs-left {
  border-bottom: none;
  padding-top: 2px;
}
.inner-body .tabs-left li {
  float: none;
  margin-bottom: 6px;
  margin-right: -1px;
  background: #fff;
  position: relative;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}
.inner-body .tabs-left li a {
  font-weight: bold;
}
.inner-body .tabs-right {
  border-bottom: none;
  padding-top: 2px;
  border-left: 1px solid #ddd;
}
.inner-body .tabs-right li {
  float: none;
  margin-bottom: 2px;
  margin-left: -1px;
  background: #fff;
}
.inner-body .tabs-left > li a.active,
.inner-body .tabs-left > li a:hover {
  border: none;
  background: #b08441 !important;
  color: #fff;
}
.inner-body .tabs-left > li a.active:after,
.inner-body .tabs-left > li a:hover:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -13px;
  border-left: 0;
  border-bottom: 13px solid transparent;
  border-top: 13px solid transparent;
  border-left: 16px solid #b08441;
}
@media screen and (max-width: 767px) {
  .inner-body .tabs-left > li a.active:after,
  .inner-body .tabs-left > li a:hover:after {
    display: none;
  }
}
.inner-body .tabs-left > li > a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  font-weight: 400;
  font-size: 18px;
  display: block;
  color: #b08441;
  padding: 10px;
}
.inner-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  color: #2c2a2a;
  text-align: justify;
}
.inner-body .tab-header {
  font-size: 20px;
  font-weight: 600;
  color: #b08441;
  text-transform: capitalize;
}
.inner-body hr {
  border: 1px solid;
  margin: 0 auto 30px;
}
.inner-body .tab-content {
  padding: 30px 15px 45px 15px;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
@media screen and (max-width: 868px) {
  .inner-body .tab-content {
    margin: 0px;
  }
}
@media screen and (max-width: 600px) {
  .inner-body .tab-content {
    padding: 30px 10px;
  }
}
.inner-body .tab-content .board_team .our-team {
  text-align: center;
  position: relative;
  color: #fff;
}
.inner-body .tab-content .board_team .our-team .pic {
  position: relative;
}
.inner-body .tab-content .board_team .our-team img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 8px;
}
@media screen and (max-width: 1199px) {
  .inner-body .tab-content .board_team .our-team img {
    height: 160px;
  }
}
@media screen and (max-width: 992px) {
  .inner-body .tab-content .board_team .our-team img {
    height: 200px;
  }
}
@media screen and (max-width: 800px) {
  .inner-body .tab-content .board_team .our-team img {
    max-height: 300px;
    min-height: 100px;
    height: auto;
  }
}
.inner-body .tab-content .board_team .our-team .content {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  text-align: center;
  padding-bottom: 10px;
  transform: perspective(100px) rotateX(-90deg);
  transform-origin: center top 0;
  transition: all 0.5s ease 0s;
  opacity: 0;
  border-radius: 8px;
}
.inner-body .tab-content .board_team .our-team:hover .content,
.inner-body .tab-content .board_team .our-team.active .content {
  opacity: 1;
  transform: perspective(100px) rotateX(0deg);
}
.inner-body .tab-content .board_team .our-team .title {
  margin: 5px 0 0;
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
}
.inner-body .tab-content .board_team .our-team .post {
  display: block;
  font-size: 15px;
  color: #b08441;
  text-transform: capitalize;
}
.inner-body .tab-content .board_team .our-team .social {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  bottom: 17px;
  left: 84%;
}
.inner-body .tab-content .board_team .our-team .social li {
  margin: 2px;
  display: inline-block;
}
.inner-body .tab-content .board_team .our-team .social li a {
  display: block;
  color: #fff;
  font-size: 12px;
  height: 25px;
  width: 25px;
  line-height: 25px;
  border-radius: 0;
  background-color: #b08441;
  margin-right: 5px;
  transition: all 0.5s ease 0s;
  position: relative;
}
.inner-body .tab-content .board_team .our-team .social li a:hover, .inner-body .tab-content .board_team .our-team.active .social li a {
  border-radius: 50%;
  text-decoration: none;
}
@media screen and (max-width: 990px) {
  .inner-body .tab-content .board_team .our-team {
    margin-bottom: 30px;
  }
}
.inner-body .tab-content ol {
  padding-top: 10px;
}
.inner-body .tab-content ol li {
  list-style-type: inherit;
  color: #000;
  padding: 5px 0;
}

.blog_list {
  margin: 40px auto;
}
.blog_list .Add_section {
  margin: 0px 0 20px 0;
  position: sticky;
  top: 93px;
}
.blog_list .Add_section .add_here {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .blog_list .Add_section {
    margin: 20px 0 20px 0px;
  }
}
.blog_list .blog_left .single_blog {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 10px;
  margin: 30px 0;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 2px 3px 6px rgba(78, 75, 75, 0.33);
  border: 1px solid #f3eeee;
}
@media screen and (max-width: 557px) {
  .blog_list .blog_left .single_blog {
    grid-template-columns: 1fr;
  }
}
.blog_list .blog_left .single_blog .single_blog_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  min-height: 100px;
  max-height: 400px;
}
.blog_list .blog_left .single_blog .single_blog_detail .small_icons_div {
  display: flex;
  color: rgba(149, 143, 143, 0.9019607843);
  grid-gap: 30px;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}
@media screen and (max-width: 990px) {
  .blog_list .blog_left .single_blog .single_blog_detail .small_icons_div {
    font-size: 12px;
  }
}
@media screen and (max-width: 865px) {
  .blog_list .blog_left .single_blog .single_blog_detail .small_icons_div {
    grid-gap: 5px;
  }
}
@media screen and (max-width: 347px) {
  .blog_list .blog_left .single_blog .single_blog_detail .small_icons_div {
    grid-gap: 5px;
    font-size: 13px;
  }
}
.blog_list .blog_left .single_blog .single_blog_detail .small_icons_div span {
  margin: 0 8px 0 0;
}
@media screen and (max-width: 347px) {
  .blog_list .blog_left .single_blog .single_blog_detail .small_icons_div span {
    margin: 0 2px 0 0;
  }
}
.blog_list .blog_left .single_blog .single_blog_detail p {
  font-size: 15px;
  color: #747070;
}
.blog_list .blog_left .single_blog .single_blog_detail h4 {
  font-size: 20px;
  text-transform: capitalize;
}
@media screen and (max-width: 990px) {
  .blog_list .blog_left .single_blog .single_blog_detail h4 {
    font-size: 18px;
  }
}
.blog_list .blog_left .single_new {
  padding: 10px;
  border-radius: 4px;
  margin: 0 0 30px 0;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
.blog_list .blog_left .single_new .single_image_dec_section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px;
  align-items: center;
}
@media screen and (max-width: 557px) {
  .blog_list .blog_left .single_new .single_image_dec_section {
    grid-template-columns: 1fr;
  }
}
.blog_list .blog_left .single_new .single_image_dec_section .single_blog_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  min-height: 150px;
  max-height: 200px;
}
.blog_list .blog_left .single_new .single_image_dec_section .single_blog_detail p {
  font-size: 15px;
  color: #747070;
}
.blog_list .blog_left .single_new .single_image_dec_section .single_blog_detail h4 {
  font-size: 20px;
  text-transform: capitalize;
}
.blog_list .blog_left .single_new .single_image_dec_section .single_blog_detail h4 a:hover {
  color: #b08441;
}
@media screen and (max-width: 990px) {
  .blog_list .blog_left .single_new .single_image_dec_section .single_blog_detail h4 {
    font-size: 18px;
  }
}
.blog_list .blog_left .single_new .single_image_dec_section_below .small_icons_div {
  display: flex;
  color: rgba(149, 143, 143, 0.9019607843);
  grid-gap: 30px;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}
@media screen and (max-width: 366px) {
  .blog_list .blog_left .single_new .single_image_dec_section_below .small_icons_div {
    grid-gap: 10px;
    font-size: 13px;
  }
}
.blog_list .blog_left .single_new .single_image_dec_section_below .small_icons_div span {
  margin: 0 8px 0 0;
}
@media screen and (max-width: 347px) {
  .blog_list .blog_left .single_new .single_image_dec_section_below .small_icons_div span {
    margin: 0 2px 0 0;
  }
}
.blog_list .blog_left .pagination_of_list ul.pagination {
  justify-content: center;
}
.blog_list .blog_left .pagination_of_list ul li {
  margin: 0 5px;
}
.blog_list .blog_left .pagination_of_list ul li a {
  border-radius: 8px;
  padding: 5px 14px;
}

.blog-details-area {
  margin: 50px 0;
}
.blog-details-area .uniform_title {
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  margin: 20px 0;
}
.blog-details-area .blog-details-content .social_about {
  display: flex;
  margin: 10px 0;
  grid-gap: 5px;
  align-items: center;
}
.blog-details-area .blog-details-content .social_about a {
  color: #ccc;
  margin: 9px;
}
@media screen and (max-width: 767px) {
  .blog-details-area .blog-details-content .social_about a {
    margin: 4px;
  }
}
.blog-details-area .blog-details-content .social_about .fa-brands {
  font-size: 25px;
  transition: ease 500ms;
  cursor: pointer;
}
.blog-details-area .blog-details-content .social_about .fa-brands:hover {
  transform: translateY(-10px);
}
.blog-details-area .blog-details-content .social_about .fa-brands.fa-twitter:hover {
  color: #00acee;
}
.blog-details-area .blog-details-content .social_about .fa-brands.fa-facebook:hover {
  color: #3b5998;
}
.blog-details-area .blog-details-content .social_about .fa-brands.fa-instagram:hover {
  background: linear-gradient(to top left, #feda75 0%, #feda75 15%, #fa7e1e 30%, #d62976 45%, #962fbf 65%, #4f5bd5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-details-area .blog-details-content .social_about .fa-brands.fa-whatsapp:hover {
  color: #25D366;
}
.blog-details-area .blog-details-content .title {
  margin-bottom: 30px;
  line-height: 1.2;
  font-size: 35px;
}
.blog-details-area .blog-details-content .blog-preview-img {
  margin-bottom: 30px;
}
.blog-details-area .blog-details-content .blog-preview-img img {
  max-width: 100%;
  width: 100%;
  max-height: 500px;
  min-height: 100px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-area .blog-details-content .tag-list {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
.blog-details-area .blog-details-content .tag-list li {
  display: inline-block;
  font-size: 15px;
  color: var(--bodyColor);
  margin-right: 15px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  margin-bottom: 10px;
}
.blog-details-area .blog-details-content .tag-list li i {
  color: var(--mainColor);
  font-size: 16px;
  margin-right: 6px;
  position: relative;
  top: 2px;
}
.blog-details-area .blog-details-content p {
  margin-bottom: 15px;
  line-height: 36px;
  text-align: justify;
}
.blog-details-area .blog-details-content blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #f5f5f5;
  padding: 30px 60px 35px;
}
@media screen and (max-width: 767px) {
  .blog-details-area .blog-details-content blockquote {
    padding: 30px 20px 35px;
  }
}
.blog-details-area .blog-details-content blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #897e7e;
}
.blog-details-area .blog-details-content blockquote p {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: var(--titleColor);
}
.blog-details-area .blog-details-content blockquote .blog-article-content {
  margin-bottom: 30px;
}
.blog-details-area .blog-details-content blockquote .blog-article-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.blog-details-area .blog-details-content blockquote .blog-article-content ul li {
  display: block;
  font-size: var(--fontSize);
  padding-left: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-details-area .blog-details-content blockquote h3 {
  font-size: 26px;
}
.blog-details-area .Add_section {
  margin: 35px 0 20px 0;
  position: sticky;
  top: 93px;
}
.blog-details-area .Add_section .add_here {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .blog-details-area .Add_section {
    margin: 20px 0 20px 0px;
  }
}

.member_detail .postrow {
  margin: 150px auto;
  border-radius: 15px;
  position: relative;
}
.member_detail .postrow ul {
  transform: translate(0, -50%);
  display: flex;
  margin: 30px auto;
  justify-content: center;
  grid-auto-rows: 29px;
}
.member_detail .postrow ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  width: 30px;
  height: 19px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
}
.member_detail .postrow ul li i {
  padding: 0;
}
.member_detail .postrow ul li:hover {
  transform: translateY(-30px);
}
.member_detail .postrow ul li::before, .member_detail .postrow ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.member_detail .postrow ul li::before {
  transform: rotate(60deg);
}
.member_detail .postrow ul li::after {
  transform: rotate(-60deg);
}
.member_detail .postrow ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
}
.member_detail .postrow ul li:nth-of-type(1) a, .member_detail .postrow ul li:nth-of-type(1)::before, .member_detail .postrow ul li:nth-of-type(1)::after {
  background: #3b5999;
}
.member_detail .postrow ul li:nth-of-type(2) a, .member_detail .postrow ul li:nth-of-type(2)::before, .member_detail .postrow ul li:nth-of-type(2)::after {
  background: #55acee;
}
.member_detail .postrow ul li:nth-of-type(3) a, .member_detail .postrow ul li:nth-of-type(3)::before, .member_detail .postrow ul li:nth-of-type(3)::after {
  background: #dd4b39;
}
.member_detail .postrow ul li:nth-of-type(4) a, .member_detail .postrow ul li:nth-of-type(4)::before, .member_detail .postrow ul li:nth-of-type(4)::after {
  background: #000;
}
.member_detail .postrow ul li:nth-of-type(5) a, .member_detail .postrow ul li:nth-of-type(5)::before, .member_detail .postrow ul li:nth-of-type(5)::after {
  background: #125688;
}
.member_detail .postrow .minip {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .member_detail .postrow .minip {
    top: -54px;
  }
}
.member_detail .postrow .minip .imageb .image {
  width: 194px;
  height: 194px;
  border-radius: 50%;
  border: 4px solid #b08441;
  background-image-position: center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .member_detail .postrow .minip .imageb .image {
    width: 120px;
    height: 120px;
  }
}
.member_detail .postrow .name {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
}
.member_detail .postrow .name h6 {
  margin: 5px auto;
  font-size: 16px;
  font-weight: 600;
}
.member_detail .postrow .name h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #b08441;
}
.member_detail .postrow .name p {
  font-size: 15px;
}
.member_detail .postrow .post {
  padding: 50px;
  background-color: rgba(176, 132, 65, 0.1098039216);
  border-radius: 14px;
}
@media screen and (max-width: 600px) {
  .member_detail .postrow .post {
    padding: 20px;
  }
}
.member_detail .temp {
  width: 100%;
  margin: 150px auto 0;
  text-align: justify;
}
.member_detail .temp p {
  font-size: 15px;
  line-height: 28px;
}

.new_board_team {
  padding: 15px 0 0;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  transition: 0.5s;
}
.new_board_team:hover {
  box-shadow: 0 12px 18px rgba(22, 21, 21, 0.57);
}
.new_board_team ul {
  padding: 0;
}
.new_board_team ul li {
  list-style: none;
  position: relative;
  list-style: none;
  display: inline-block;
  width: 27px;
  height: 16px;
  margin: 0 4px;
  transition: 0.9s;
  padding: 0;
  text-align: center;
  z-index: 1;
}
.new_board_team ul li::before, .new_board_team ul li::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #b08441;
}
.new_board_team ul li::before {
  transform: rotate(60deg);
}
.new_board_team ul li::after {
  transform: rotate(-60deg);
}
.new_board_team ul li:hover {
  transform: translateY(-30px);
}
.new_board_team ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  background-color: #b08441;
}
.new_board_team ul li a i {
  padding: 0;
}
.new_board_team ul li:nth-of-type(1) a, .new_board_team ul li:nth-of-type(1)::before, .new_board_team ul li:nth-of-type(1)::after {
  background: #3b5999;
}
.new_board_team ul li:nth-of-type(2) a, .new_board_team ul li:nth-of-type(2)::before, .new_board_team ul li:nth-of-type(2)::after {
  background: #55acee;
}
.new_board_team ul li:nth-of-type(3) a, .new_board_team ul li:nth-of-type(3)::before, .new_board_team ul li:nth-of-type(3)::after {
  background: #000;
}
.new_board_team img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  text-align: center;
  margin: auto;
}
.new_board_team h6 {
  text-transform: capitalize;
  font-size: small;
  color: #b08441;
  font-weight: 400;
  margin: 0 0 15px;
}
.new_board_team h5 {
  text-transform: capitalize;
  margin: 10px 0;
  font-size: 15px;
  font-weight: 600;
}
.new_board_team a {
  font-weight: 600;
  transition: 5s;
}
.new_board_team .social {
  padding: 0;
  display: flex;
  grid-gap: 10px;
}

.achivement_div {
  margin: 50px auto;
}
.achivement_div .achivement_devide {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-gap: 20px;
}
@media screen and (max-width: 767px) {
  .achivement_div .achivement_devide {
    grid-template-columns: 1fr;
  }
}
.achivement_div .achivement_devide .list_section ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  grid-row-gap: 15px;
}
@media screen and (max-width: 991px) {
  .achivement_div .achivement_devide .list_section ul {
    grid-template-columns: 1fr;
  }
}
.achivement_div .achivement_devide .list_section ul li {
  list-style: none;
  padding: 0 0 10px 0;
  font-size: 14px;
  line-height: 23px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.3019607843);
}
.achivement_div .achivement_devide .list_section ul li::before {
  background-image: url("../images/right-click.png");
  background-size: 20px 20px;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: "";
  background-size: contain;
  margin: 0px 0 -5px 0px;
}
.achivement_div .achivement_devide .list_section ul li:nth-child(even) {
  padding: 0 0 0 20px;
}
@media screen and (max-width: 991px) {
  .achivement_div .achivement_devide .list_section ul li:nth-child(even) {
    padding: initial;
  }
}
.achivement_div .achivement_devide .image_section {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .achivement_div .achivement_devide .image_section {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 410px) {
  .achivement_div .achivement_devide .image_section {
    grid-template-columns: 1fr;
  }
}
.achivement_div .achivement_devide .image_section img {
  width: 100%;
  max-height: 200px;
  min-height: 100px;
  height: auto;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.46);
}
@media screen and (max-width: 767px) {
  .achivement_div .achivement_devide .image_section img {
    height: 150px;
  }
}
@media screen and (max-width: 410px) {
  .achivement_div .achivement_devide .image_section img {
    height: auto;
  }
}

.projects-1 {
  margin: 50px auto;
  background: url(../images/portfolio-hp4.jpg) center center no-repeat;
  padding: 80px 0;
  background-size: cover;
}
@media screen and (max-width: 450px) {
  .projects-1 {
    padding: 0px 0;
  }
}
.projects-1 .project-thumbnail img {
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 450px) {
  .projects-1 .project-thumbnail img {
    height: 250px;
  }
}
.projects-1 .projleftimg {
  padding: 50px 0px 5px;
}
.projects-1 .projrgtinfo {
  padding: 50px 50px 5px;
}
.projects-1 .projrgtinfo .owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  transition: 0.5s;
  font-size: 27px;
  width: 35px;
  height: 35px;
  line-height: 30px;
  border: 1px solid #efefef;
  border-radius: 3px;
  background-color: #fff;
  text-align: center;
}
.projects-1 .projrgtinfo .owl-nav button.owl-prev {
  left: -55px;
}
.projects-1 .projrgtinfo .owl-nav button.owl-next {
  right: -55px;
}
.projects-1 .projrgtinfo .project-summary {
  padding: 10px 0;
}
.projects-1 .projrgtinfo .project-summary h6 {
  color: #fff;
  font-size: 13px;
}
.projects-1 .margbtm40 {
  margin-bottom: 40px !important;
}
.projects-1 .mf-section-title.light h2 {
  color: #fff;
}
.projects-1 .mf-section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  padding-bottom: 15px;
  position: relative;
}
.projects-1 .mf-section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background-color: #f7c02d;
  position: absolute;
  left: 0;
  bottom: 0;
}

.text_over_image_page figure {
  position: relative;
}
.text_over_image_page figure img {
  width: 100%;
  height: auto;
}
.text_over_image_page figure .overlay_text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 40px;
}
@media screen and (max-width: 433px) {
  .text_over_image_page figure .overlay_text {
    padding: 10px 20px;
  }
}
.text_over_image_page figure .overlay_text .image p span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 400px) {
  .text_over_image_page figure .overlay_text .image p span {
    font-size: 11px;
  }
}
.text_over_image_page figure .overlay_text .image p.valid_date {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
}
.text_over_image_page figure .overlay_text .image p.valid_date span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
}
.text_over_image_page figure .overlay_text .image img {
  height: 100px;
  width: 90px;
  border-radius: 4px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 496px) {
  .text_over_image_page figure .overlay_text .image img {
    height: 80px;
    width: 70px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 400px) {
  .text_over_image_page figure .overlay_text .image img {
    height: 60px;
    width: 50px;
  }
}
.text_over_image_page figure .overlay_text .image h6 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 397px) {
  .text_over_image_page figure .overlay_text .image h6 {
    font-size: 12px;
  }
}
.text_over_image_page figure .overlay_text .image h6.coder_id {
  letter-spacing: 23px;
  font-size: 18px;
}
@media screen and (max-width: 1400px) {
  .text_over_image_page figure .overlay_text .image h6.coder_id {
    letter-spacing: 18px;
  }
}
@media screen and (max-width: 554px) {
  .text_over_image_page figure .overlay_text .image h6.coder_id {
    letter-spacing: 15px;
  }
}
@media screen and (max-width: 498px) {
  .text_over_image_page figure .overlay_text .image h6.coder_id {
    letter-spacing: 12px;
  }
}
@media screen and (max-width: 498px) {
  .text_over_image_page figure .overlay_text .image h6.coder_id {
    letter-spacing: 9px;
    font-size: 16px;
  }
}
@media screen and (max-width: 397px) {
  .text_over_image_page figure .overlay_text .image h6.coder_id {
    font-size: 13px;
  }
}
@media screen and (max-width: 496px) {
  .text_over_image_page figure .overlay_text .image p {
    margin: 0 0 1px 0;
  }
}
.text_over_image_page figure .overlay_text .header_logo {
  display: grid;
  grid-template-columns: auto 80px;
  align-items: center;
}
@media screen and (max-width: 554px) {
  .text_over_image_page figure .overlay_text .header_logo {
    grid-template-columns: auto 55px;
  }
}
@media screen and (max-width: 554px) {
  .text_over_image_page figure .overlay_text .header_logo {
    grid-template-columns: auto 35px;
  }
}
.text_over_image_page figure .overlay_text .header_logo .text_section {
  text-align: center;
}
.text_over_image_page figure .overlay_text .header_logo .text_section h5 {
  font-weight: 800;
  margin: 0;
  font-size: 17px;
  letter-spacing: 2px;
}
@media screen and (max-width: 554px) {
  .text_over_image_page figure .overlay_text .header_logo .text_section h5 {
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 476px) {
  .text_over_image_page figure .overlay_text .header_logo .text_section h5 {
    font-size: 15px;
  }
}
@media screen and (max-width: 397px) {
  .text_over_image_page figure .overlay_text .header_logo .text_section h5 {
    font-size: 13px;
  }
}
.text_over_image_page figure .overlay_text .header_logo .logo img {
  height: 75px;
  width: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 554px) {
  .text_over_image_page figure .overlay_text .header_logo .logo img {
    height: 55px;
    width: 55px;
  }
}
@media screen and (max-width: 554px) {
  .text_over_image_page figure .overlay_text .header_logo .logo img {
    height: 35px;
    width: 35px;
  }
}
.text_over_image_page figure .below_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 40px;
}
.text_over_image_page figure .below_overlay .detail_qr_devide {
  display: grid;
  grid-template-columns: auto 100px;
}
.text_over_image_page figure .below_overlay .detail_qr_devide .detail {
  display: grid;
  text-transform: uppercase;
  font-size: 16px;
  grid-template-columns: 70px auto;
  grid-gap: 20px;
  margin: 1px;
}
.text_over_image_page figure .below_overlay .detail_qr_devide .detail h6 {
  font-weight: 600;
  margin: 0;
}
.text_over_image_page figure .below_overlay .detail_qr_devide .detail h6 img{
    height: 23px;

    width: 59px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 10px 0 0;
}
@media screen and (max-width: 1400px) {
  .text_over_image_page figure .below_overlay .detail_qr_devide .detail h6 {
    margin: 2px 0;
  }
}
.text_over_image_page figure .below_overlay .detail_qr_devide .detail h6:first-child {
  text-align: right;
}
@media screen and (max-width: 547px) {
  .text_over_image_page figure .below_overlay .detail_qr_devide .detail h6 {
    font-size: 14px;
  }
}
.text_over_image_page figure .below_overlay .qr_code {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.text_over_image_page figure .below_overlay .bottom_overlay {
  position: absolute;
  right: 18px;
  bottom: 26px;
}
.text_over_image_page figure .below_overlay .bottom_overlay h6 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .text_over_image_page figure .below_overlay .bottom_overlay h6 {
    font-size: 12px;
  }
}
.text_over_image_page figure .below_overlay .bottom_overlay p {
  font-size: 13px;
  margin: 0;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .text_over_image_page figure .below_overlay .bottom_overlay p {
    font-size: 11px;
  }
}
.text_over_image_page figure .below_overlay .bottom_overlay p.image_signature img {
  height: 23px;
  float: right;
  width: 59px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px 0 0;
}
.text_over_image_page figure .down {
  position: absolute;
  bottom: 11px;
  left: 20%;
  text-align: center;
}
.text_over_image_page figure .down p {
  margin: 0 auto;
  color: red;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}/*# sourceMappingURL=style.css.map */

