@import url("../../css2");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

#scrollUp {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #f1582a;
  color: white;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#scrollUp:hover {
  background-color: #f4a931;
}

.page-head, .about-section .section-head, .services-section .section-head, .services-detail-section .section-head, .references-section .section-head, .news-section .section-head, .news-detail-section .section-head, .faq-section .section-head, .tmgd-section .section-head, .application-section .section-head, .contact-section .section-head-area .section-head {
  margin-bottom: 2.25rem;
}

.page-head h1, .about-section .section-head h1, .services-section .section-head h1, .services-detail-section .section-head h1, .references-section .section-head h1, .news-section .section-head h1, .news-detail-section .section-head h1, .faq-section .section-head h1, .tmgd-section .section-head h1, .application-section .section-head h1, .contact-section .section-head-area .section-head h1 {
  background-color: #fff;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 0.5rem 1.1rem;
  font-size: 24px;
  display: inline-block;
  color: #f4a931;
  margin-bottom: 0;
 
  font-weight: 700;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
}

/* Mobile Menu Area */
.offcanvas-end {
  border-left: 0;
  width: 75%;
}

.offcanvas-end .offcanvas-header {
  border-bottom: 1px solid #dadada;
}

.offcanvas-end .offcanvas-header h5 {
  margin-bottom: 0;
}

.offcanvas-end .offcanvas-body {
  padding: 1.5rem 1.25rem;
}

.offcanvas-end .offcanvas-body .mobile-menu-list {
  padding-left: 1rem;
  margin-bottom: 0;
}

.offcanvas-end .offcanvas-body .mobile-menu-list li:not(:last-child) {
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #dadada;
}

.offcanvas-end .offcanvas-body .mobile-menu-list li a {
  text-decoration: none;
  color: #323e49;
  
}

.offcanvas-end .offcanvas-body .mobile-menu-list li a.active {
  font-weight: 600;
}

.offcanvas-end .offcanvas-body .mobile-menu-list li .mobile-opened {
  display: none;
  padding-left: 0;
  list-style-type: none;
}

.offcanvas-end .offcanvas-body .mobile-menu-list li .mobile-opened li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.offcanvas-end .offcanvas-body .mobile-menu-list li .mobile-opened li a {
  text-transform: capitalize;
  font-size: 14px;
}

#head {
  position: relative;
  z-index: 200;
}

#head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

#head .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#head .header-content .logo-area a {
  display: inline-block;
  background-color: #fff;
  padding: 0.9rem 1.15rem;
}

#head .header-content .logo-area a img {
  width: 300px;
}

#head .header-content .menu-area {
  position: relative;
  bottom: -5px;
}

#head .header-content .menu-area .desk-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}

#head .header-content .menu-area .desk-menu li:not(:last-child) {
  margin-right: 1.55rem;
}

#head .header-content .menu-area .desk-menu li a {
  text-decoration: none;
  color: #f4a931;
 
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  position: relative;
}

#head .header-content .menu-area .desk-menu li a.active {
  font-weight: 700;
}

#head .header-content .menu-area .desk-menu li a::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #f1582a;
  width: 0;
  height: 2px;
  -webkit-transition: width .4s ease;
  transition: width .4s ease;
}

#head .header-content .menu-area .desk-menu li a :hover::before {
  width: 100%;
}

#head .header-content .menu-area .desk-menu li.ana-menu {
  position: relative;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 160px;
  padding: 2.5rem 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu {
  list-style-type: none;
  padding: 0;
  z-index: 99999;
  width: 100%;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  position: relative;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu li {
  margin-right: 0;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu li a {
  color: #f4a931;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 0.75rem 1rem;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu li a::before {
  content: none;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu li a:hover {
  background-color: #fff2ea;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}

#head .header-content .menu-area .desk-menu li.ana-menu .sub-menu-area .sub-menu::after {
  content: '';
  position: absolute;
  top: -11.8px;
  left: 14px;
  border: 6px solid transparent;
  z-index: -1;
  border-bottom-width: 5px;
  border-bottom-color: #f1582a;
}

#head .header-content .menu-area .desk-menu li.ana-menu:hover .sub-menu-area {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: visible;
}

#head .header-content .menu-area .desk-menu li.ana-menu:hover a {
  color: #f1582a;
}

#head .header-content .menu-area .mobile-menu-item {
  margin: 0.3rem 0;
  width: 35px;
  height: 23px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

#head .header-content .menu-area .mobile-menu-item span {
  display: block;
  position: absolute;
  height: 3px;
  width: 35px;
  background: #f4a931;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#head .header-content .menu-area .mobile-menu-item span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#head .header-content .menu-area .mobile-menu-item span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#head .header-content .menu-area .mobile-menu-item span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.head-banner {
 
  z-index: 100;
}

.head-banner .banner-img {
  position: relative;
}

.head-banner .banner-img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.head-banner .banner-img .img-content-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background-image: url(../img/mavi-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.head-banner .banner-img .img-content-area .content-text-area {
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-48%) translateX(-9.5%);
          transform: translateY(-48%) translateX(-9.5%);
  left: 12%;
  
}

.head-banner .banner-img .img-content-area .content-text-area .content-head {
  margin-bottom: 1.6rem;
}

.head-banner .banner-img .img-content-area .content-text-area .content-head h3 {
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
  font-size: 37px;
  line-height: 3rem;
}

.head-banner .banner-img .img-content-area .content-text-area .content-head h3 span {
  font-weight: 300;
  font-size: 32px;
}

.head-banner .banner-img .img-content-area .content-text-area .content-button .btn {
  border: 2px solid #e6c977;
  border-radius: 0;
  color: #f4a931;
  font-size: 18px;
  font-weight: 600;
}

.head-banner .social-area {
  position: absolute;
  right: 0;
  z-index: 1000000;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
}

.head-banner .social-area .social-links {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem 0.5rem 1.5rem 0.85rem;
  margin-bottom: 0;
}

.head-banner .social-area .social-links li:not(:last-child) {
  margin-bottom: 1rem;
}

.head-banner .social-area .social-links li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #f1582a;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  padding: 0.75rem;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.head-banner .social-area .social-links li a svg {
  font-size: 17px;
}

.head-banner .social-area .social-links li a:hover {
  background-color: #75759e;
}

.head-banner .swiper-button-next,
.head-banner .swiper-button-prev {
  top: auto;
  bottom: 25px;
}

.head-banner .swiper-button-next::after,
.head-banner .swiper-button-prev::after {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border: 2px solid #fff;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.head-banner .swiper-button-next {
  right: 25px;
}

.head-banner .swiper-button-prev {
  left: 25px;
}

.head-banner.home-banner .banner-img img {
  height: 100%;
}

.head-banner.home-banner .banner-img .img-content-area::before {
  height: 90%;
}

.head-banner.home-banner .banner-img .img-content-area .content-text-area {
  -webkit-transform: translateY(-48%) translateX(-12.5%);
          transform: translateY(-48%) translateX(-12.5%);
  left: 12.5%;
}

.services-info-section .section-content-area {
  margin-bottom: 55px;
    margin-top: 45px;
}

.services-info-section .section-content-area .service-col .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #282628;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-bottom: 3px solid #f4a931;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.services-info-section .section-content-area .service-col .list-item .item-icon {
  margin-right: 1.75rem;
}

.services-info-section .section-content-area .service-col .list-item .item-icon img {
  width: 30px;
}

.services-info-section .section-content-area .service-col .list-item .item-head {
  line-height: 1.05rem;
}

.services-info-section .section-content-area .service-col .list-item .item-head span {
  
  font-size: 16px;
  font-weight: 600;
}

.services-info-section .section-content-area .service-col .list-item:hover {
  background-color: #393939;
}

.services-info-section .section-content-area .service-col:nth-child(7) .list-item, .services-info-section .section-content-area .service-col:nth-child(8) .list-item, .services-info-section .section-content-area .service-col:nth-child(9) .list-item {
  border-bottom: 0;
}

.services-info-section .section-content-area.mobile-section {
  display: none;
  bottom: 70px !important;
}

.services-info-section .section-content-area.mobile-section .swiper {
  padding-bottom: 2.5rem;
}

.services-info-section .section-content-area.mobile-section .swiper .list-item {
  background-color: #282628;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 1.25rem 1.5rem;
  min-height: 100px;
}

.services-info-section .section-content-area.mobile-section .swiper .list-item .item-icon {
  margin-right: 1.75rem;
}

.services-info-section .section-content-area.mobile-section .swiper .list-item .item-icon img {
  width: 30px;
}

.services-info-section .section-content-area.mobile-section .swiper .list-item .item-head {
  line-height: 1.05rem;
}

.services-info-section .section-content-area.mobile-section .swiper .list-item .item-head span {
  
  font-size: 11px;
  font-weight: 500;
}

.services-info-section .section-content-area.mobile-section .swiper .swiper-pagination-bullet {
  width: 23px;
  height: 6px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #75759e;
  opacity: 1;
}

.services-info-section .section-content-area.mobile-section .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #75759e;
}

.home-about-section .section-head {
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}

.home-about-section .section-head h4 {
  color: #f4a931;
  font-size: 32px;
  font-weight: 600;
  
  margin-bottom: 0;
}

.home-about-section .section-content-area {
  position: relative;
  height: 600px;
}

.home-about-section .section-content-area::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  background-image: url(../img/home-about-img.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home-about-section .section-content-area .content-text-area {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  width: 40%;
}

.home-about-section .section-content-area .content-text-area p {
  margin-bottom: 2rem;
  line-height: 1.7rem;
}

.home-about-section .section-content-area .content-text-area .btn {
  background-color: #75759e;
  color: #fff;
  padding: 0.4rem 1.15rem;
  width: 160px;
  border-radius: 11px;
  font-style: italic;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.home-about-section .section-content-area .content-text-area .btn:hover {
  background-color: #4f4f6e;
}

.home-slogan-section {
  padding-bottom: 2rem;
}

.home-slogan-section .section-content-area .content-item {
  text-align: center;
}

.home-slogan-section .section-content-area .content-item .item-icon {
  margin-bottom: 1rem;
}

.home-slogan-section .section-content-area .content-item .item-icon img {
  width: 90px;
}

.slogan-section {
  padding: 3.5rem 0;
}

.slogan-section .section-content-area {
  position: relative;
}

.slogan-section .section-content-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 29%;
  -webkit-transform: translateX(-29%);
          transform: translateX(-29%);
  background-color: #f4a931;
  width: 3px;
  height: 100%;
}

.slogan-section .section-content-area .content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slogan-section .section-content-area .content-item .item-header {
  width: 15%;
  text-align: center;
}

.slogan-section .section-content-area .content-item .item-header .item-icon {
  margin-bottom: 1rem;
}

.slogan-section .section-content-area .content-item .item-header .item-icon img {
  width: 90px;
}

.slogan-section .section-content-area .content-item .item-header .item-head span {
  font-size: 15px;
  font-weight: 400;
}

.slogan-section .section-content-area .content-item .item-desc {
  width: 65%;
  font-size: 15px;
  font-weight: 400;
}

.slogan-section .section-content-area .content-item:not(:last-child) {
  margin-bottom: 3.5rem;
}

.services-item-section {
  padding: 2.5rem 0;
}

.services-item-section .section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.services-item-section .section-head h3 {
  color: #f4a931;
  font-size: 32px;
  font-weight: 600;
  
  margin-bottom: 0;
}

.services-item-section .section-content-area {
  text-align: center;
}

.services-item-section .section-content-area .text-area {
  margin-bottom: 1.5rem;
}

.services-item-section .section-content-area .text-area p {
  margin-bottom: 0;
}

.services-item-section .section-content-area .button-area .btn {
  background-color: #75759e;
  font-style: italic;
  padding: 0.4rem 0.7rem;
  width: 150px;
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  border-radius: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.services-item-section .section-content-area .button-area .btn:hover {
  background-color: #4f4f6e;
}

.home-reference-section {
  padding: 2.5rem 0;
}

.home-reference-section .section-content-area {
  position: relative;
  padding: 1.5rem 1.75rem;
}

.home-reference-section .section-content-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #75759e;
  border-radius: 25px;
  z-index: -1;
}

.home-reference-section .section-content-area .section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.home-reference-section .section-content-area .section-head h4 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  
  margin-bottom: 0;
}

.home-reference-section .section-content-area .swiper {
  padding-bottom: 4rem;
}

.home-reference-section .section-content-area .swiper .content-item {
  background-color: #fff;
  border-radius: 25px;
  border: 1.5px solid #75759e;
  padding: 1.25rem 0.65rem;
}

.home-reference-section .section-content-area .swiper .content-item .item-img {
  padding: 0 1.25rem;
  margin-bottom: 1rem;
}

.home-reference-section .section-content-area .swiper .content-item .item-img img {
  width: 100%;
}

.home-reference-section .section-content-area .swiper .content-item .item-head {
  border-top: 1px solid #f4a931;
  text-align: center;
}

.home-reference-section .section-content-area .swiper .content-item .item-head span {
  font-style: italic;
  display: inline-block;
  padding-top: 0.5rem;
}

.home-reference-section .section-content-area .swiper .swiper-pagination-bullet {
  width: 25px;
  height: 7px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #75759e;
  opacity: 1;
}

.home-reference-section .section-content-area .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #75759e;
}

.home-offer-area {
  padding: 2rem 0;
}

.home-offer-area .section-content-area .row {
  --bs-gutter-x: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-offer-area .section-content-area .row .section-head {
  text-align: center;
  margin-bottom: 1.85rem;
}

.home-offer-area .section-content-area .row .section-head h5 {
  margin-bottom: 0;
  color: #75759e;
  font-size: 32px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.home-offer-area .section-content-area .row .section-head h5 span {
  font-weight: 300;
}

.home-offer-area .section-content-area .row .content-text p {
  font-size: 15px;
  margin-bottom: 0;
}

.home-offer-area .section-content-area .row .content-img img {
  width: 100%;
}

.about-section {
  background-image: url(../img/kurumsal-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  margin-top: -17px;
}

.about-section .section-content-area .content-head {
  margin-bottom: 1rem;
}

.about-section .section-content-area .content-head h4 {
  margin-bottom: 0;
  color: #75759e;
  font-weight: 600;
  font-size: 24px;
}

.about-section .section-content-area .row .text-area p {
  font-weight: 500;
  line-height: 1.9rem;
}

.about-section .section-content-area .row .text-area p:last-child {
  margin-bottom: 0;
}

.about-section .section-content-area .row .img-area img {
  width: 100%;
}

.about-documents {
  padding: 3rem 0;
}

.about-documents .area-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-documents .area-head h5 {
  font-size: 29px;
  color: #f4a931;
  margin-bottom: 0;
  
  font-weight: 600;
  display: inline-block;
}

.about-documents .content-area .area-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.about-documents .content-area .area-item .item-img {
  width: 30%;
}

.about-documents .content-area .area-item .item-img img {
  width: 100%;
}

.about-documents .content-area .area-item .item-content {
  width: 70%;
  background-color: #75759e;
  padding: 1.6rem 0;
}

.about-documents .content-area .area-item .item-content .content-head {
  margin-bottom: 1rem;
}

.about-documents .content-area .area-item .item-content .content-head span {
  background-color: #fff;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 0.4rem 2.9rem 0.4rem 0.9rem;
  font-size: 17px;
  display: inline-block;
  color: #75759e;
  margin-bottom: 0;
  
  font-weight: 600;
}

.about-documents .content-area .area-item .item-content .content-text {
  padding: 0 2rem;
  font-size: 14px;
  line-height: 1.2rem;
  color: #fff;
  font-weight: 300;
}

.about-documents .content-area .area-item .item-content .content-text p {
  margin-bottom: 0;
}

.about-documents .content-area .area-item:first-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about-documents .content-area .area-item:first-child .item-content {
  padding-bottom: 5rem;
}

.about-documents .content-area .area-item:nth-child(2) {
  margin-top: -50px !important;
}

.about-documents .content-area .area-item:nth-child(2) .item-img {
  width: 21%;
  position: relative;
  left: 20px;
}

.about-documents .content-area .area-item:nth-child(2) .item-content .content-head span {
  padding-left: 2.2rem;
}

.services-section {
  padding: 2.5rem 0;
}

.services-section .section-desc {
  background-color: #75759e;
  display: inline-block;
  padding: 0.8rem 1rem 0.8rem 0.25rem;
  color: #fff;
  width: 80%;
  position: relative;
}

.services-section .section-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: -190px;
  background-color: #75759e;
  width: 193px;
  height: 100%;
}

.services-section .section-desc p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px;
}

.services-section .section-desc p span {
  font-style: italic;
  font-weight: 600;
}

.services-section .section-content-area {
  margin-top: 2.5rem;
}

.services-section .section-content-area .row {
  --bs-gutter-x: 2.2rem;
  --bs-gutter-y: 1.5rem;
}

.services-section .section-content-area .row .content-item .item-img {
  position: relative;
  -webkit-transition: all .8s;
  transition: all .8s;
}

.services-section .section-content-area .row .content-item .item-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}

.services-section .section-content-area .row .content-item .item-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(72, 72, 116, 0.5);
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.services-section .section-content-area .row .content-item .item-img:hover::before {
  content: none;
}

.services-section .section-content-area .row .content-item .item-head {
  width: 91%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  bottom: 20px;
  line-height: 1rem;
  padding: 0.8rem 1rem;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.services-section .section-content-area .row .content-item .item-head .head-text {
  text-decoration: none;
  
  color: #75759e;
  font-size: 13px;
  font-weight: 600;
}

.services-section .section-content-area .row .content-item .item-head .action-icon {
  position: absolute;
  bottom: 7px;
  right: 23px;
}

.services-section .section-content-area .row .content-item .item-head .action-icon a {
  color: #f4a931;
  font-size: 14px;
}

.services-detail-section {
  padding: 2.5rem 0;
}

.services-detail-section .section-content-area .row {
  --bs-gutter-x: 2.5rem;
}

.services-detail-section .section-content-area .row .services-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
}

.services-detail-section .section-content-area .row .services-sidebar .services-list {
  background-color: #e9e9ed;
  border-radius: 28px;
  padding: 1.3rem 2.5rem;
}

.services-detail-section .section-content-area .row .services-sidebar .services-list li {
  line-height: 1.2rem;
}

.services-detail-section .section-content-area .row .services-sidebar .services-list li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.services-detail-section .section-content-area .row .services-sidebar .services-list li a {
  color: #75759e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.services-detail-section .section-content-area .row .services-sidebar .services-list li a.active {
  color: #2f2f47;
  font-weight: 700;
}

.services-detail-section .section-content-area .row .content-col {
  margin-top: -85px;
}

.services-detail-section .section-content-area .row .content-col .service-head {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 1.75rem;
}

.services-detail-section .section-content-area .row .content-col .service-head h2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 25px;
  
  color: #75759e;
}

.services-detail-section .section-content-area .row .content-col .service-content .content-img {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.services-detail-section .section-content-area .row .content-col .service-content .content-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.content-text p{
	font-size: 16px;
  font-weight: 500;
    line-height: 1.9rem;
}
.services-detail-section .section-content-area .row .content-col .service-content p,
.services-detail-section .section-content-area .row .content-col .service-content li,
.services-detail-section .section-content-area .row .content-col .service-content tr {
  font-size: 16px;
  font-weight: 500;
    line-height: 1.9rem;
}

.references-section {
  padding: 2.5rem 0;
  background-image: url(../img/references-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.references-section .section-content-area {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.references-section .section-content-area .content-item {
  width: 18%;
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
  background-color: #fff;
  border-radius: 25px;
  border: 1.5px solid #75759e;
  padding: 1.25rem 0.65rem;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.references-section .section-content-area .content-item .item-img {
  padding: 0 1.25rem;
  margin-bottom: 1rem;
}

.references-section .section-content-area .content-item .item-img img {
  width: 100%;
}

.references-section .section-content-area .content-item .item-head {
  border-top: 1px solid #f4a931;
  text-align: center;
}

.references-section .section-content-area .content-item .item-head span {
  font-style: italic;
  display: inline-block;
  padding-top: 0.5rem;
}

.references-section .section-content-area .content-item:hover {
  -webkit-box-shadow: rgba(244, 169, 49, 0.4) 0px 9px 24px;
          box-shadow: rgba(244, 169, 49, 0.4) 0px 9px 24px;
}

.news-section {
  padding: 2.5rem 0 4rem 0;
}

.news-section .section-content-area .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 3rem;
}

.news-section .section-content-area .row .content-item {
  border: 1px solid #75759e;
  border-radius: 25px;
}

.news-section .section-content-area .row .content-item .item-img {
  position: relative;
}

.news-section .section-content-area .row .content-item .item-img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.news-section .section-content-area .row .content-item .item-img .news-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #18518d;
  border-top-right-radius: 25px;
  color: #fff;
  padding: 1.2rem 0.9rem;
}

.news-section .section-content-area .row .content-item .item-img .news-date svg {
  font-size: 19px;
}

.news-section .section-content-area .row .content-item .item-img .news-date span {
  font-size: 13px;
  font-weight: 600;
}

.news-section .section-content-area .row .content-item .item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #75759e;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9rem 1.25rem;
}

.news-section .section-content-area .row .content-item .item-head .head-text {
  line-height: 1.2rem;
  margin-right: 1rem;
}

.news-section .section-content-area .row .content-item .item-head .head-text a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.news-section .section-content-area .row .content-item .item-head .item-action a {
  color: #fff;
  font-size: 22px;
}

.news-detail-section {
  padding: 2.5rem 0 4rem 0;
}

.news-detail-section .news-head {
  text-align: right;
  margin-bottom: 2rem;
}

.news-detail-section .news-head h2 {
  margin-bottom: 0;
  color: #75759e;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3rem;
}

.news-detail-section .news-content-area {
  margin-bottom: 3rem;
}

.news-detail-section .news-content-area .row {
  --bs-gutter-y: 2rem;
}

.news-detail-section .news-content-area .row .news-img img {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail-section .news-content-area .row .news-summary {
  font-size: 15px;
  line-height: 1.4rem;
  font-weight: 600;
}

.news-detail-section .news-content-area .row .news-description {
 font-size: 16px;
  font-weight: 500;
    line-height: 1.9rem;
}

.news-detail-section .news-content-area .row .news-description p:last-child {
  margin-bottom: 0;
}

.news-detail-section .related-news .area-head {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f1582a;
}

.news-detail-section .related-news .area-head span {
  
  font-weight: 600;
  font-size: 21px;
  
}

.news-detail-section .related-news .related-content-area .row {
  --bs-gutter-x: 2rem;
}

.news-detail-section .related-news .related-content-area .row .content-item {
  border: 1px solid #75759e;
  border-radius: 25px;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-img {
  position: relative;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-img .news-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #18518d;
  border-top-right-radius: 25px;
  color: #fff;
  padding: 1.2rem 0.9rem;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-img .news-date svg {
  font-size: 19px;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-img .news-date span {
  font-size: 13px;
  font-weight: 600;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #75759e;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.9rem 1.25rem;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-head .head-text {
  line-height: 1.2rem;
  margin-right: 1rem;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-head .head-text a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.news-detail-section .related-news .related-content-area .row .content-item .item-head .item-action a {
  color: #fff;
  font-size: 22px;
}

.faq-section {
  padding: 2.5rem 0 4rem 0;
}

.faq-section .section-content-area {
  margin-top: 3rem;
}

.faq-section .section-content-area .faq-item {
  width: 100%;
}

.faq-section .section-content-area .faq-item:not(:last-child) {
  margin-bottom: 2.5rem;
}

.faq-section .section-content-area .faq-item .item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-section .section-content-area .faq-item .item-question .question-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 94%;
}

.faq-section .section-content-area .faq-item .item-question .question-head .question-text {
  width: 100%;
  border: 1px solid #f1582a;
  border-right: 0;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #f4a931;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6rem 3.5rem;
  cursor: pointer;
}

.faq-section .section-content-area .faq-item .item-question .question-head .question-text .question-number {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  width: 55px;
  height: 55px;
  background-image: url(../img/action-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0.6rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.faq-section .section-content-area .faq-item .item-question .question-head .question-text .question-number span {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}

.faq-section .section-content-area .faq-item .item-question .question-head .question-text p {
  margin-bottom: 0;
}

.faq-section .section-content-area .faq-item .item-question .question-action {
  width: 6%;
}

.faq-section .section-content-area .faq-item .item-question .question-action button {
  width: 100%;
  height: 100%;
  background-image: url(../img/action-bg.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 0;
}

.faq-section .section-content-area .faq-item .item-question .question-action button svg {
  color: #fff;
  font-size: 34px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.faq-section .section-content-area .faq-item .item-content {
  margin-top: 1.5rem;
  font-size: 16px;
  font-weight: 500;
    line-height: 1.9rem;
}

.faq-section .section-content-area .faq-item .item-content p {
  text-align: justify;
}

.faq-section .section-content-area .faq-item .item-content p:last-child {
  margin-bottom: 0;
}

.faq-section .section-content-area .faq-item.active .question-action button svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-section .section-content-area .loadMore {
  text-align: center;
}

.faq-section .section-content-area .loadMore button {
  background-color: transparent;
  border: 0;
  color: #f4a931;
  font-size: 17px;
  font-weight: 400;
  
}

.faq-section .section-content-area .loadMore button svg {
  font-size: 32px;
}

.tmgd-section {
  padding: 2.5rem 0 4rem 0;
}

.tmgd-section .section-content-area .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tmgd-section .section-content-area .row .content-img img {
  width: 100%;
}

.tmgd-section .section-content-area .row .content-text {
  font-size: 15px;
}

.tmgd-section .section-content-area .row .content-text p:last-child {
  margin-bottom: 0;
}

.tmgd-section .section-content-area .row .content-text.last-text {
  font-size: 16px;
  font-weight: 600;
}

.tmgd-section .section-content-area .row .content-list {
  background-color: #f1f1f1;
  border: 2px solid #75759e;
}

.tmgd-section .section-content-area .row .content-list ul {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.tmgd-section .section-content-area .row .content-list ul li {
  padding: 1rem 2rem;
  font-size: 14px;
  position: relative;
  line-height: 1.2rem;
  font-size: 16px;
  font-weight: 500;
    line-height: 1.9rem;
}

.tmgd-section .section-content-area .row .content-list ul li:not(:last-child) {
  border-bottom: 2px solid #393939;
}

.tmgd-section .section-content-area .row .content-list ul li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 11px;
  background-color: #393939;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.process-info-area {
  position: relative;
  bottom: 50px;
  z-index: 100;
}

.process-info-area .area-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.process-info-area .area-content .process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28%;
  position: relative;
}

.process-info-area .area-content .process-item .item-number {
  margin-bottom: 1rem;
  background-image: url(../img/number-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.process-info-area .area-content .process-item .item-number span {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.process-info-area .area-content .process-item .item-head {
  text-align: center;
  line-height: 1.2rem;
}

.process-info-area .area-content .process-item .item-head span {
  color: #f4a931;
  font-weight: 500;
  font-size: 17px;
  
}

.process-info-area .area-content .process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42%;
  right: -90px;
  width: 190px;
  background-color: #393939;
  height: 1px;
}

.application-section {
  padding: 2.5rem 0 4rem 0;
}

.application-section .form-area .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.application-section .form-area .row .form-label {
  
  color: #f4a931;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 17px;
}

.application-section .form-area .row .form-control,
.application-section .form-area .row .form-select {
  background-color: #fff2ea;
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: #f4a931;
  font-weight: 600;
  
  resize: none;
}

.application-section .form-area .row .form-control:focus,
.application-section .form-area .row .form-select:focus {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.application-section .form-area .row .form-control::-webkit-input-placeholder,
.application-section .form-area .row .form-select::-webkit-input-placeholder {
  color: #f4a931;
  font-weight: 500;
}

.application-section .form-area .row .form-control:-ms-input-placeholder,
.application-section .form-area .row .form-select:-ms-input-placeholder {
  color: #f4a931;
  font-weight: 500;
}

.application-section .form-area .row .form-control::-ms-input-placeholder,
.application-section .form-area .row .form-select::-ms-input-placeholder {
  color: #f4a931;
  font-weight: 500;
}

.application-section .form-area .row .form-control::placeholder,
.application-section .form-area .row .form-select::placeholder {
  color: #f4a931;
  font-weight: 500;
}

.application-section .form-area .row .btn {
  background-color: #ff914f;
  color: #fff;
  padding: 0.7rem 1.9rem;
  
  font-weight: 500;
  border-radius: 12px;
  width: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.application-section .form-area .row .btn:hover {
  background-color: #f4a931;
}

.application-section .form-area input[type="date"]::-webkit-calendar-picker-indicator {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.contact-section {
  padding: 2.5rem 0 4rem 0;
}

.contact-section .section-head-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.25rem;
}

.contact-section .section-head-area .section-head {
  margin-bottom: 0;
}

.contact-section .section-head-area .section-desc {
  font-weight: 600;
  line-height: 1.2rem;
}

.contact-section .section-head-area .section-desc p {
  margin-bottom: 0;
}

.contact-section .form-area .row {
  --bs-gutter-x: 4rem;
  --bs-gutter-y: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section .form-area .row .form-label {
  
  color: #f4a931;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 17px;
}

.contact-section .form-area .row .form-control,
.contact-section .form-area .row .form-select {
  background-color: #fff2ea;
  border: 0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  color: #f4a931;
  font-weight: 600;
  
  resize: none;
}

.contact-section .form-area .row .form-control:focus,
.contact-section .form-area .row .form-select:focus {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-section .form-area .row .form-control::-webkit-input-placeholder,
.contact-section .form-area .row .form-select::-webkit-input-placeholder {
  color: #f4a931;
  font-weight: 500;
}

.contact-section .form-area .row .form-control:-ms-input-placeholder,
.contact-section .form-area .row .form-select:-ms-input-placeholder {
  color: #f4a931;
  font-weight: 500;
}

.contact-section .form-area .row .form-control::-ms-input-placeholder,
.contact-section .form-area .row .form-select::-ms-input-placeholder {
  color: #f4a931;
  font-weight: 500;
}

.contact-section .form-area .row .form-control::placeholder,
.contact-section .form-area .row .form-select::placeholder {
  color: #f4a931;
  font-weight: 500;
}

.contact-section .form-area .action-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2rem;
}

.contact-section .form-area .action-area .btn {
  background-color: #ff914f;
  color: #fff;
  padding: 0.7rem 1.9rem;
  
  font-weight: 500;
  border-radius: 12px;
  width: 200px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.contact-section .form-area .action-area .btn:hover {
  background-color: #f4a931;
}

.contact-section .contact-info-area {
  margin-top: 2.5rem;
}

.contact-section .contact-info-area .area-head {
  margin-bottom: 2rem;
}

.contact-section .contact-info-area .area-head h3 {
  display: inline-block;
  margin-bottom: 0;
  font-size: 23px;
  color: #f4a931;
  font-weight: 600;
}

.contact-section .contact-info-area .area-content {
  background-color: #fff2ea;
  padding: 1.5rem 0;
}

.contact-section .contact-info-area .area-content .row {
  --bs-gutter-x: 3rem;
}

.contact-section .contact-info-area .area-content .row .info-col-1 {
  border-right: 3px solid #f1582a;
}

.contact-section .contact-info-area .area-content .row .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-section .contact-info-area .area-content .row .info-item .item-icon {
  margin-right: 1rem;
}

.contact-section .contact-info-area .area-content .row .info-item .item-icon svg {
  font-size: 30px;
  color: #f1582a;
}

.contact-section .contact-info-area .area-content .row .info-item .item-desc {
  font-size: 15px;
  font-weight: 500;
  color: #75759e;
}

.contact-section .contact-info-area .area-content .row .info-item .item-desc p {
  margin-bottom: 0;
}

.contact-section .contact-info-area .area-content .row .info-item .item-desc a {
  color: #75759e;
  text-decoration: none;
}

.contact-section .contact-info-area .area-content .row .info-col-2 .info-item {
  padding-left: 3rem;
}

.contact-section .contact-info-area .area-content .row .info-col-2 .info-item:nth-child(1) {
  margin-bottom: 2.5rem;
}

#foot {
  background-color: #75759e;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  color: #fff;
}

#foot .foot-content-area {
  padding: 2rem 0;
}

#foot .foot-content-area .row {
  --bs-gutter-x: 3rem;
}

#foot .foot-content-area .foot-item .item-head {
  margin-bottom: 1.75rem;
  position: relative;
}

#foot .foot-content-area .foot-item .item-head::before {
  content: "";
  position: absolute;
  bottom: -8px;
  background-color: #e6c977;
  width: 140px;
  height: 2px;
}

#foot .foot-content-area .foot-item .item-head span {
  font-size: 20px;
  font-weight: 500;
}

#foot .foot-content-area .foot-item .item-content .logo-area {
  margin-bottom: 1.25rem;
}

#foot .foot-content-area .foot-item .item-content .logo-area img {
  width: 160px;
}

#foot .foot-content-area .foot-item .item-content .text-area p {
  font-size: 13px;
  font-weight: 300;
}

#foot .foot-content-area .foot-item .item-content .news-area .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1.5rem;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .item-img {
  position: relative;
  margin-bottom: 0.2rem;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .item-img a {
  color: #282628;
  text-decoration: none;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .item-img img {
  width: 100%;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .item-img .img-date-info {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 0.3rem;
  line-height: 1rem;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .item-img .img-date-info span {
  font-size: 13px;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .news-head {
  line-height: 0.8rem;
}

#foot .foot-content-area .foot-item .item-content .news-area .row .news-item .news-head a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item .item-icon {
  margin-right: 0.8rem;
  text-align: center;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item .item-icon svg {
  font-size: 22px;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item .contact-text {
  line-height: 1.15rem;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item .contact-text a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

#foot .foot-content-area .foot-item .item-content .contact-area .contact-item .contact-text span {
  font-size: 14px;
}

#foot .footer-dt {
  background: #fff;
  width: 100%;
  float: left;
  padding: 5px 0;
}

#foot .footer-dt p {
  margin: 0;
  text-align: center;
  color: #75759e;
  font-size: 12px;
}

#foot .footer-dt p a {
  margin: 0;
  text-align: center;
  color: #75759e;
  text-decoration: none;
}

#foot .footer-dt p a:hover {
  margin: 0;
  text-align: center;
  color: #75759e;
}
/*# sourceMappingURL=style.css.map */
