@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}
:root {
  --title-font-family: "Poppins", sans-serif;
  --icon-font-family: "Font Awesome 6 Pro";
  --icon-font-family2: "Flaticon";
  --container-width: 1290px;
  --divder-space: 200px;
  --headings-color: #000000 ;
  --gold: #c0a975;
  --hover: #000000;
  --navy: #000000;
  --grey: #d9dfe2;
}
html,
body {
  scroll-behavior: auto !important;
}
body {
  background-color: #ffffff;
  font-family: var(--title-font-family);
  font-size: 14px;
  font-weight: 400;
  color: var(--headings-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.ovh {
  overflow: hidden;
  box-sizing: border-box;
  min-height: 100vh;
  background: inherit;
}
a:active, a:focus, a:hover, a:visited, .btn:active, .btn:focus, .btn:hover, .btn:visited {
  text-decoration: none;
  outline: none;
}
a, .btn {
  text-decoration: none;
  outline: none;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.btn-white,
.btn-white2 {
  background-color: #ffffff;
  border: 1px solid var(--headings-color);
}
.btn-white:hover,
.btn-white2:hover {
  border: 1px solid var(--hover);
}
.btn-gold{
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
}
.btn-gold:hover{
  border: 1px solid var(--hover);
  background-color: var(--hover);
}
.ud-btn {
  display: inline-block;
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
  font-style: normal;
  letter-spacing: 0em;
  padding: 13px 38px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  z-index: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ud-btn i {
  margin-left: 10px;
  font-size: 16px;
  transform: rotate(-45deg);
}
.ud-btn:hover, .ud-btn:focus, .ud-btn:active {
  outline: none;
  box-shadow: none;
}
@media (max-width: 339px) {
  .ud-btn {
    padding: 13px 25px;
  }
}
.ud-btn:before{
  background-color: var(--hover);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  -webkit-transform: skew(50deg);
  -moz-transform: skew(50deg);
  -o-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: width 0.6s;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  transition: width 0.6s;
  transform-origin: top left;
}
.ud-btn:hover{
  color: #ffffff;
}
.ud-btn:hover:before{
  height: 100%;
  width: 200%;
}
.scrollToHome {
  background-color: transparent;
  bottom: -45px;
  color: #fff;
  display: block;
  height: 150px;
  opacity: 0;
  position: absolute;
  right: 45px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  z-index: 9;
  transform: rotate(0deg);
  transition: all 0.4s ease;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}
.scrollToHome img{
  margin-top: 20px;
}
.scrollToHome:hover {
  color: #fff;
}
.scrollToHome:hover {
  background-color: var(--hover);
  color: #fff;
}
.scrollToHome.show {
  bottom: 45px;
  right: 45px;
  opacity: 1;
  transform: rotate(180deg);
}
.whatsapp{
  position: fixed;
  right: 45px;
  top: 360px;
  z-index: 9999;
  width: 53px;
  height: 180px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}
.whatsapp span{
  color: var(--hover);
  background-color: #fafafd;
  width: 53px;
  height: 127px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.whatsapp .icon{
  transform: rotate(180deg);
  width: 53px;
  height: 53px;
  background-color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 32px;
  border-radius: 5px;
}
.mb4{
  margin-bottom: 30px;
}

/*Home 5 Slider Content*/
.slider-slide-item {
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 1000px;
  position: relative;
}
.slider-slide-item:before {
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .slider-slide-item {
    height: 500px;
  }
}
.thumbimg-countnumber-carousel .slider-subtitle {
  font-family: var(--title-font-family);
  font-weight: 600;
  margin: 0 0 10px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@media (max-width: 991.98px) {
  .thumbimg-countnumber-carousel .slider-subtitle {
    font-size: 26px;
  }
}
.thumbimg-countnumber-carousel .slider-title {
  font-family: var(--title-font-family);
  font-weight: 700;
  margin: 0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@media (max-width: 991.98px) {
  .thumbimg-countnumber-carousel .slider-title {
    font-size: 26px;
    line-height: normal;
    text-align: left;
  }
}
.thumbimg-countnumber-carousel .slider-text {
  font-family: var(--title-font-family);
  font-weight: 300;
  margin: auto;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@media (max-width: 991.98px) {
  .thumbimg-countnumber-carousel .slider-text{
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
  }
}
.thumbimg-countnumber-carousel .slider-btn {
  border-color: transparent;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@media (max-width: 991.98px) {
  .thumbimg-countnumber-carousel .slider-btn-block{
    text-align: left;
  }
}
.thumbimg-countnumber-carousel .active .slider-subtitle {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.thumbimg-countnumber-carousel .active .slider-title {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.thumbimg-countnumber-carousel .active .slider-text {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.thumbimg-countnumber-carousel .active .slider-btn {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
/* Sliders Styles */
.thumbimg-countnumber-carousel .owl-dots {
  /*position: absolute;*/
  right: 340px;
  top: 300px;
  width: 60px;
}
@media (max-width: 1399.98px) {
  .thumbimg-countnumber-carousel .owl-dots {
    right: 50px;
  }
}
@media (max-width: 1199.98px) {
  .thumbimg-countnumber-carousel .owl-dots {
    bottom: 0;
    left: 30px;
    top: auto;
    width: auto;
  }
}
@media (max-width: 575.98px) {
  .thumbimg-countnumber-carousel .owl-dots {
    display: none;
  }
}

.banner-wrapper .owl-dot {
  display: grid;
  position: relative;
  z-index: 991;
}
.banner-wrapper .owl-dot span {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  border-radius: 50%;
  height: 50px;
  margin: 0 0 15px;
  opacity: 0.7;
  width: 50px;
  transition: all 0.4s ease;
}
.banner-wrapper .owl-dot:last-child {
  margin-bottom: 0;
}
.banner-wrapper .owl-dot.active span {
  opacity: 1;
  outline: 2px solid #ffffff;
  outline-offset: 5px;
}
.banner-wrapper .carousel-control-block {
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px 12px 0 0;
  bottom: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 160px;
  padding: 15px 20px;
  position: absolute;
  right: 20px;
  width: 100%;
  z-index: 999;
}
.banner-wrapper .carousel-btn-block {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #DDDDDD;
  padding-left: 20px;
}
.banner-wrapper .carousel-btn-block span {
  font-size: 30px;
  color: var(--headings-color);
  cursor: pointer;
  line-height: 0.6em;
}
.banner-wrapper .carousel-btn-block span + span {
  margin-top: 7px;
}
.banner-wrapper .slider-number-count {
  font-weight: 400;
  color: var(--headings-color);
  display: flex;
}
.banner-wrapper .sep {
  margin-left: 10px;
  margin-right: 10px;
}
.banner-wrapper .sep,
.banner-wrapper .current-number {
  color: var(--hover);
  font-weight: 600;
}
.nav_none.owl-theme.owl-carousel .owl-nav {
  display: none !important;
}
.dots_none.owl-theme.owl-carousel .owl-dots {
  display: none !important;
}
header.nav-homepage-style {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 55px 0 20px;
  position: fixed;
  width: 100%;
  z-index: 3;
}
header.nav-homepage-style.at-home5 {
  border-bottom: none;
}
.posr {
  position: relative;
}
header.nav-homepage-style .header-logo img{
  width: 100%;
}
header.nav-homepage-style .header-logo.logo2 {
  display: none;
}
header.nav-homepage-style .ace-responsive-menu a {
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 400;
  font-size: 16px;
}
header.nav-homepage-style .ace-responsive-menu li:last-child a{
  font-weight: 400;
  padding: 18px 5px 18px 5px;
}
header.nav-homepage-style .ace-responsive-menu a:hover{
  color: var(--gold);
}
header.nav-homepage-style .header-logo.logo2 {
  display: none;
}
header.nav-homepage-style.stricky.stricky-fixed {
  background-color: #ffffff;
  padding: 20px 0 20px;
  box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  z-index: 9;
}
header.nav-homepage-style.stricky.stricky-fixed .ace-responsive-menu a {
  color: var(--hover);
  font-family: var(--title-font-family);
  font-weight: 400;
}
header.nav-homepage-style.stricky.stricky-fixed .ace-responsive-menu li:last-child a{
  font-weight: 400;
  padding: 18px 5px 18px 5px;
}
header.nav-homepage-style.stricky.stricky-fixed .ace-responsive-menu a:hover{
  color: var(--gold);
}
header.nav-homepage-style.stricky.stricky-fixed .sidemenu-btn,
header.nav-homepage-style.stricky.stricky-fixed .login-info {
  color: var(--headings-color);
}
header.nav-homepage-style.stricky.stricky-fixed .sidemenu-btn .img-1 {
  display: none;
}
header.nav-homepage-style.stricky.stricky-fixed .sidemenu-btn .img-2 {
  display: block;
}
header.nav-homepage-style.stricky.stricky-fixed .header-logo.logo1 {
  display: none;
}
header.nav-homepage-style.stricky.stricky-fixed .header-logo.logo2 {
  display: block;
}
header.nav-homepage-style.stricky.stricky-fixed .menu-btn,
header.nav-homepage-style.stricky.stricky-fixed .btn-transparent2 {
  border: 1px solid var(--headings-color);
  color: var(--headings-color);
}
header.nav-homepage-style.stricky.stricky-fixed .menu-btn:hover {
  background-color: #EB6753;
  border: 1px solid #EB6753;
  color: #ffffff;
}
header .header-phone{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
header .header-phone img{
  margin-right: 17px;
}
header.nav-homepage-style.stricky.stricky-fixed .header-phone {
  color: var(--hover);
  font-family: var(--title-font-family);
  font-weight: 600;
}

.aboutUs .aboutUsText{
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
.aboutUs .aboutUsText .subTitle{
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
}
.aboutUs .aboutUsText .title{
  color: var(--hover);
  font-weight: 700;
}
.aboutUs .aboutUsText p{
  color: var(--headings-color);
}
.aboutUs .aboutUsImage{
  z-index: 0;
}
.aboutUs .aboutUsImage img{
  width: 100%;
  height: 100%;
}

.areas-banner4 {
  background-attachment: fixed;
  background-image: url(../image/background/uzmanlik-alanlari.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.areas-banner4 .areas-style .sub-title{
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
}
.areas-banner4 .areas-style .areas-title{
  color: var(--navy);
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 70px;
}
.iconbox-style1 {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 30px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 10px;
}
.iconbox-style1 .icon {
  display: block;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.iconbox-style1 .title {
  color: var(--navy);
  font-family: var(--title-font-family);
  font-weight: 700;
}
.iconbox-style1 .title span{
  display: block;
  margin-top: 5px;
}
.iconbox-style1 .text {
  color: var(--navy);
  font-family: var(--title-font-family);
  text-align: center;
  
}
.iconbox-style1 .title, 
.iconbox-style1 .text, 
.iconbox-style1 .icon {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.areas-banner4 .item:hover .iconbox-style1{
  background-color: var(--hover);
}
.areas-banner4 .item:hover .iconbox-style1 .title{
  color: #fff;
}
.areas-banner4 .item:hover .iconbox-style1 .text{
  color: #fff;
}

.blogs{
  position: relative;
}
.blogs .blogs-style .sub-title{
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
}
.blogs .blogs-style .blogs-title{
  color: var(--navy);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 70px;
}
.blogs .listing-style7 .list-content .date{
  color: var(--gold);
  font-weight: 600;
  margin-top: 30px;
  transition: all 0.4s ease;
}
.blogs .listing-style7 .list-content .list-title a{
  color: var(--hover);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-top: 30px;
  transition: all 0.4s ease;
}
.blogs .listing-style7 .list-content .list-btn a{
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.4s ease;
}
.blogs .listing-style7 img {
  transition: all 0.4s ease;
}
.blogs .listing-style7 .list-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.blogs .listing-style7:hover .list-thumb img {
  transform: scale(1.1) rotate(-2deg);
}
.blogs .listing-style7:hover .list-content .date,
.blogs .listing-style7:hover .list-content .list-btn a{
  color: var(--navy);
}
.blogs .listing-style7:hover .list-content .list-title a{
  color: var(--gold);
}
.blogs .more {
  display: block;
  text-align: center;
  width: 200px;
  bottom: 0px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
}
.navi_pagi_top_right.owl-theme .owl-dots,
.navi_pagi_bottom_left.owl-theme .owl-dots,
.navi_pagi_bottom_center.owl-theme .owl-dots {
  display: block;
  text-align: center;
  width: 100px;
}
.navi_pagi_top_right.owl-theme .owl-nav,
.navi_pagi_bottom_left.owl-theme .owl-nav,
.navi_pagi_bottom_center.owl-theme .owl-nav {
  display: block;
  width: 300px;
  position: absolute;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev {
  left: 0;
  right: auto;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 0;
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next {
  background-color: #f7f8fc;
  border: 1px solid #f7f8fc;
  color: var(--gold);
  border: none;
  height: auto;
  line-height: initial;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  font-size: 20px;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 5px
}
.navi_pagi_top_right.owl-theme .owl-nav .owl-prev:hover, .navi_pagi_top_right.owl-theme .owl-nav .owl-prev:active, .navi_pagi_top_right.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:active,
.navi_pagi_top_right.owl-theme .owl-nav .owl-next:focus,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:hover,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:active,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:active,
.navi_pagi_bottom_left.owl-theme .owl-nav .owl-next:focus,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:hover,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:active,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-prev:focus,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:hover,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:active,
.navi_pagi_bottom_center.owl-theme .owl-nav .owl-next:focus {
  background-color: var(--navy);
  color: #fff;
}
.navi_pagi_top_right.owl-theme .owl-dots button.owl-dot.active span,
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot.active span,
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot.active span {
  background-color: #222222;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.navi_pagi_top_right.owl-theme .owl-dots button.owl-dot span,
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot span,
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot span {
  background-color: #D7D7D7;
  border-radius: 50%;
  height: 6px;
  position: relative;
  width: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 919px) {
  .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(4), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(5), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(7), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(8), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(9), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(10), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(11), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(12), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(13), .navi_pagi_top_right.owl-theme .owl-dots button.owl-dot:nth-child(14),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(4),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(5),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(7),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(8),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(9),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(10),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(11),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(12),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(13),
.navi_pagi_bottom_left.owl-theme .owl-dots button.owl-dot:nth-child(14),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(4),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(5),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(7),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(8),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(9),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(10),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(11),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(12),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(13),
.navi_pagi_bottom_center.owl-theme .owl-dots button.owl-dot:nth-child(14) {
    display: none;
  }
}
.dots_nav_light.owl-theme .owl-dots button.owl-dot:hover span, .dots_nav_light.owl-theme .owl-dots button.owl-dot.active span {
  background-color: #ffffff;
}
.dots_nav_light.owl-theme .owl-dots button.owl-dot span {
  background-color: #ffffff;
}
.dots_nav_light.owl-theme .owl-nav .owl-prev,
.dots_nav_light.owl-theme .owl-nav .owl-next {
  color: #ffffff;
}
.dots_nav_light.owl-theme .owl-nav .owl-prev:hover i, .dots_nav_light.owl-theme .owl-nav .owl-prev:active i,
.dots_nav_light.owl-theme .owl-nav .owl-next:hover i,
.dots_nav_light.owl-theme .owl-nav .owl-next:active i {
  color: #ffffff;
}
.navi_pagi_bottom_center.owl-theme .owl-nav {
  margin: 0 auto;
  bottom: -39px;
  left: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .navi_pagi_bottom_center.owl-theme .owl-nav {
    bottom: -39px;
  }
}
.navi_pagi_bottom_center.owl-theme .owl-dots {
  bottom: -20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
}
@media (max-width: 991.98px) {
  .navi_pagi_bottom_center.owl-theme .owl-dots {
    bottom: 0;
  }
}
.navi_pagi_bottom_left.owl-theme .owl-dots {
  bottom: -18px;
  left: 20px;
  margin: 0 auto;
  position: absolute;
}
@media (max-width: 991.98px) {
  .navi_pagi_bottom_left.owl-theme .owl-dots {
    position: relative;
  }
}
.navi_pagi_bottom_left.owl-theme .owl-nav {
  bottom: 0;
  position: absolute;
}
@media (max-width: 991.98px) {
  .navi_pagi_bottom_left.owl-theme .owl-nav {
    position: relative;
  }
}
.navi_pagi_top_right.owl-theme .owl-dots {
  position: absolute;
  right: 20px;
  top: -90px;
  width: 100px;
}
@media (max-width: 991.98px) {
  .navi_pagi_top_right.owl-theme .owl-dots {
    left: 20px;
    position: relative;
    right: 0;
    top: -7px;
  }
}
.navi_pagi_top_right.owl-theme .owl-nav {
  right: 0;
  top: -83px;
}
@media (max-width: 991.98px) {
  .navi_pagi_top_right.owl-theme .owl-nav {
    position: relative;
    top: 0;
  }
}

footer{
  background-color: var(--hover);
  padding: 76px 0 43px;
  margin-top: 100px;
}
footer .footerTop{
  display: flex;
  align-items: flex-start;
}
footer .footerTop .item{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footerTop .item .footer-logo img{
  width: 100%; 
}
footer .footerTop .item .footerText{
  font-weight: 600;
  color: #fff;
}
footer .footerTop .item .title{
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
}
footer .footerTop .item .title a{
  color: var(--gold);
  font-weight: 600;
}
footer .footerTop .item .title .icon{
  margin-right: 10px;
}
footer .footerTop .item ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .footerTop .item ul li{
  color: #fff;
}
footer .footerTop .item .quick-menu{
  display: flex;
}
footer .footerTop .item .quick-menu ul:not(:last-child){
  margin-right: 50px;
}
footer .footerTop .item .quick-menu ul li a{
  color: #fff;
}
footer .footerTop .item .socialMenu li a svg path{
  fill: var(--gold);
  transition: all 0.4s ease;
}
footer .footerTop .item .socialMenu li a:hover svg path{
  fill: var(--navy);
}
.footerBottom ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}
.footerBottom ul li,
.footerBottom ul li a{
  font-size: 13px;
  position: relative;
  line-height: 0;
  color: rgba(255, 255, 255, 0.5);
}
.footerBottom ul li:not(:last-child){
  margin-right: 5px;
}
.footerBottom ul li:not(:last-child)::after{
  content: '|';
  padding-left: 5px;
}

.breadcumb-section2 {
  align-items: center;
  background-image: url(../image/background/about-page-bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
}
.breadcumb-style1 {
  position: relative;
  text-align: center;
}
.breadcumb-style1 .title {
  color: #fff;
  font-weight: 400;
}

.about .aboutContent .item:not(:last-child){
  margin-bottom: 110px;
}
.about .aboutContent .item .text .title{
  font-weight: 700;
}
.about .aboutContent .item .text p{
  font-weight: 400;
  color: var(--headings-color);
}
.about .aboutContent .item .image{
  position: relative;
}
.about .aboutContent .item .image img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
.about .aboutContent .item:nth-child(odd) .text{
  margin-right: 75px;
}
.about .aboutContent .item:nth-child(odd) .text .title{
  color: var(--hover);
}
.about .aboutContent .item:nth-child(odd) .image::after{
  content: none !important;
  background-color: var(--gold);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 30px;
  left: 30px;
  z-index: 0;
  border-radius: 10px;
}
.about .aboutContent .item:nth-child(even){
  flex-direction: row-reverse;
}
.about .aboutContent .item:nth-child(even) .text .title{
  color: var(--gold);
}
.about .aboutContent .item:nth-child(even) .image::after{
  content: none !important;
  background-color: var(--gold);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 30px;
  z-index: 0;
  border-radius: 10px;
}

.team{
  margin-top: 75px;
}
.team .teamContent .title{
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  color: var(--hover);
  text-align: center;
  margin-bottom: 75px;
}
.teamx{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.profile-card::before{
  content: '';
  background-color: #d9dfe2;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 27px;
  left: 27px;
}
.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.profile-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,40,63,0.3617822128851541) 0%, rgba(0,212,255,0) 100%);
  color: white;
  opacity: 1;
  transition: all 0.5s ease;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 40px;
  padding-bottom: 40px;
  z-index: 1;
}
.profile-card .overlay .text {
  display: block;
}
.profile-card .overlay .text .name{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #fff;
}
.profile-card .overlay .text .name_title{
  color: #fff;
  font-size: 18px;
}
.profile-card .overlay .icons {
  margin-top: 10px;
  display: none;
  transition: all 0.5s ease;
}
.profile-card .overlay .icons i {
  color: #fff;
  font-size: 22px;
}
.profile-card .overlay .icons a:not(:last-child){
  margin-right: 20px;
}
.profile-card:hover img {
  transform: scale(1.1);
}
.profile-card:hover .overlay {
  opacity: 1;
  background: rgba(0,40,63,.5);
}
.profile-card:hover .overlay .text .icons{
  display: block;
}
.team .profile-title{
  border-bottom: 1px solid var(--gold);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.team .profile-title .name{
  color: var(--hover);
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
}
.team .profile-title .name_title{
  color: var(--hover);
  font-size: 18px;
  margin-top: 10px;
}
.team .profil-desc p,
.team .profil-desc ul{
  font-size: 16px;
  color: var(--headings-color);
}
.team .profil-desc p b{
  font-size: 20px;
}

.contact .contact_title{
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 35px;
}
.contact .contactInfo{
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact .contactInfo li{
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  color: var(--headings-color);
  line-height: 30px;
}
.contact .contactInfo li a{
  font-size: 18px;
  color: var(--headings-color);
  line-height: 30px;
}
.contact .contactInfo li:not(:last-child){
  margin-bottom: 15px;
}
.contact .contactInfo li .icon{
  color: var(--gold);
  width: 25px;
  font-size: 26px;
  text-align: center;
  margin-right: 25px;
}
.contact .social{
  list-style: none;
  margin: 35px 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.contact .social li:not(:last-child){
  margin-right: 27px;
}
.contact .social li a svg path{
  fill: var(--gold);
  transition: all 0.4s ease;
}
.contact .social li a:hover svg path{
  fill: var(--navy);
}
.form .form-control {
  background: #fafafd;
  border-radius: 5px;
  height: 50px;
  border: 1px solid #e5e9eb;
}
.form  textarea.form-control {
  height: 155px;
  resize: none;
}
.form .form-control:focus {
  border-color: var(--gold);
  outline: 0;
  box-shadow: none;
}
.form .form-check-input:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.form input[type="checkbox"] {
  display: none;
}
.form input[type="checkbox"] + label span {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: -2px 10px 0 0;
  background: #f4f7fc;
  cursor: pointer;
  vertical-align: middle;
  float: left;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.form label{
  display: flex;
  align-items: center;
  font-size: 16px;
}
.form label a{
  font-weight: 600;
  color: var(--headings-color);
  margin-right: 5px;
  transition: all 0.4s ease;
}
.form label a:hover{
  color: var(--gold);
}
.form .form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 0.125rem;
}
.form input[type="checkbox"]:checked + label span { 
  background: #f4f7fc url(../image/icons/check.svg) no-repeat 50%;
}
.form  .form-group.yy {
  margin-bottom: 0;
}
.form  .form-group.yy {
  margin-bottom: 0;
}
.form .btn-contact {
  background: var(--gold);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border-radius: 0;
  width: 100%;
  height: 54px;
}
.form .btn-contact:hover{
  background-color: var(--hover);
}

.page .leftMenu{
  list-style: none;
  margin: 0;
  padding: 0;
}
.page .leftMenu li:not(:last-child){
  border-bottom: 1px solid #eff2f3;
}
.page .leftMenu li{
  padding: 15px 15px;
  border-radius: 5px;
}
.page .leftMenu li a{
  font-size: 16px;
  font-weight: 600;
  color: var(--headings-color);
  display: block;
}
.page .leftMenu li.active,
.page .leftMenu li:hover{
  background: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.page .leftMenu li.active,
.page .leftMenu li:hover(:last-child) {
    
}
.page .leftMenu li.active a,
.page .leftMenu li:hover a{
  color: #fff;
}
.page .page_title{
  color: var(--hover);
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 45px;
}

.page ul li b{
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.page p{
  font-size: 16px;
  color: var(--headings-color);
}

.article .item{
  margin-bottom: 45px;
}
.article .listing-style7 .list-thumb {
  overflow: hidden;
  position: relative;
}
.article .listing-style7 img {
  transition: all 0.4s ease;
}
.article .listing-style7 .list-content{
  margin-top: 30px;
}
.article .listing-style7 .list-content .list-title a {
  color: var(--hover);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin-top: 30px;
  transition: all 0.4s ease;
}
.article .listing-style7 .list-content .list-btn a {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.4s ease;
}
.article .listing-style7:hover .list-thumb img {
  transform: scale(1.1) rotate(-2deg);
}
.article .listing-style7:hover .list-content .date,
.article .listing-style7:hover .list-content .list-btn a{
  color: var(--navy);
}
.article .listing-style7:hover .list-content .list-title a{
  color: var(--gold);
}
.article .article_title{
  color: var(--hover);
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
}
.article .article_date{
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 40px;
}
.article p{
  color: var(--headings-color);
  font-size: 16px;
  line-height: 28px;
}
.article .sidebar .sidebar_title{
  color: var(--hover);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 35px;
}
.article .sidebar ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.article .sidebar ul li:not(:last-child){
  margin-bottom: 40px;
}
.article .sidebar ul li a{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 22px;
  font-size: 16px;
  color: var(--headings-color);
}
.article .sidebar ul li a img{
  margin-right: 25px;
}