:root {
  --mg-font1: 'Roboto', sans-serif;
  --mg-font2: 'Roboto Condensed', sans-serif;

  --mg-c1: #0079F3;
  --mg-c1-hover: #0055AE;
  --mg-c1-alt: #1E3F6C;

  --mg-c2: #FFC500;
  --mg-c2-hover: #CFA000;

  --mg-c3: #F3F4F6;
  --mg-c3-hover: #A0A0A0;
  --mg-c3-alt: #dde2e9;

  --mg-c4: #000;
  --mg-c4-hover: #000;

  --mg-c5: #3C3C3C;
  --mg-c5-hover: #3C3C3C;
}

body {
  font-family: var(--mg-font1);
  font-size: 14px;
  color: var(--mg-c4);
  font-weight: 400;
}

a {
  color: var(--mg-c1);
  text-decoration: none;
}

a:hover {
  color: var(--mg-c1-hover);
}

.btn-primary {
  background-color: var(--mg-c1);
  border-color: var(--mg-c1);
}

.btn-primary:hover {
  background-color: var(--mg-c1-hover);
  border-color: var(--mg-c1-hover);
}
main{
  min-height: 50vh;
}
/* ------------------------------------ */
nav#mainmenu {
  z-index: 999999999998;
}

nav#mainmenu .wrap-core-nav-list {
  background: var(--mg-c3-alt);
}

nav#mainmenu .nav-header {
  margin: 10px 0;
}

nav#mainmenu .brand {
  display: block;
  position: relative;
  width: 250px;
}

nav#mainmenu .brand img {
  height: 50px;
  width: auto;
}

nav#mainmenu .brand .text {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
  font-family: var(--mg-font2);
}

nav#mainmenu .brand .text div {
  font-weight: 700;
  font-size: 19px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--mg-c4);
}

nav#mainmenu .brand .text span {
  font-weight: 300;
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  color: var(--mg-c4);
}

nav#mainmenu .brand .text::before {
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 35px;
  background-color: var(--mg-c3-hover);
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.5;
}

nav#mainmenu .content-header {
  padding: 0;
  background: none;
}

nav#mainmenu .content-header .row {
  height: 50px;
}

nav#mainmenu .content-header form {
  display: inline-block;
  margin-right: 15px;
}

nav#mainmenu .content-header form .input-group {
  background-color: var(--mg-c3);
  overflow: hidden;
  border-radius: 10px;
}

nav#mainmenu .content-header form .input-group .btn {
  color: var(--mg-c3-hover);
}

nav#mainmenu .content-header form .input-group input {
  border: none;
  background-color: transparent;
  padding-left: 0;
  color: var(--mg-c3-hover);
  width: 400px;
}

nav#mainmenu .content-header form .input-group input:focus {
  box-shadow: none;
}

nav#mainmenu .content-header .btn {
  border-radius: 10px;
}

nav#mainmenu ul.attributes li a {
  padding: 11px 0px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: var(--mg-c4);
}

nav#mainmenu ul.attributes li a:hover {
  color: var(--mg-c1);
}

nav#mainmenu .menu li a {
  display: block;
  padding: 11px 17px;
  text-decoration: none;
  color: var(--mg-c4);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  position: relative;
}

nav#mainmenu .menu li a:hover {
  color: var(--mg-c1);
}

nav#mainmenu .menu>li>a:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 20px;
  display: block;
  background-color: #fff;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

nav#mainmenu .menu>li:visible:last-child>a:after {
  display: none;
}

nav#mainmenu .dropdown-content {
  background-color: var(--mg-c3-alt);
  border: none;
  top: 100%;
}

nav#mainmenu .menu .dropdown-content li a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 1);
  border-bottom: none;
}



/* ------------------------------------ */
.languagesection {}

.languagesection button {
  font-size: 60%;
  height: 30px;
}

.languagesection button img {
  margin-left: 10px;
}

.languagesection .dropdown-menu li {}

.languagesection .dropdown-menu li a {
  text-transform: uppercase;
  font-size: 60%;
  font-weight: 700;
  text-align: right;
}

.languagesection .dropdown-menu li a img {
  margin-left: 10px;
}

/* ------------------------------------ */
.inlinesocial li {
  display: inline-block;
  margin-right: 10px;
}

.inlinesocial li:last-child {
  margin-right: 0px;
}

/* ------------------------------------ */
#mainslider {
  position: relative;
  background-color: var(--mg-c1-alt);
  
}
#mainslider::before{
  position: absolute;
  content: '';
  display: block;
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../img/sli-bot.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
#mainslider::after{
  position: absolute;
  content: '';
  display: block;
  width: 70%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url('../img/sli-top.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
#mainslider .item {
  position: relative;
}
#mainslider .item .container{
  height: 320px;
  position: relative;
}
#mainslider .item .container .img{
  position: absolute;
  bottom: 0;
  right: var(--bs-gutter-x,.75rem);
}
#mainslider .item .container .img img{
  height: 280px;
  width: auto;
}
#mainslider .item .container .content{
  position: absolute;
  width: 50%;
  top: 50%;
  left: var(--bs-gutter-x,.75rem);
  transform: translate(0,-50%);
  color: #fff;
}
#mainslider .item .container .position,
#mainslider .item .container .name{
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
}
#mainslider .item .container .position{
  margin-bottom: 10px;
}
#mainslider .item .container .name{
  margin-bottom: 20px;
}
#mainslider .item .container .desc{
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 30px;
}
#mainslider .item .container .phone{
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
}
/* ------------------------------------ */
.pageheader{
  position: relative;
  width: 100%;
  height: 200px;
  font-family: var(--mg-font2);
  text-align: center;
  padding-top: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url('../img/headbg.jpg');
  color: #fff;
}
.pageheader::before{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #1E3F6C;
  opacity: 0.75;
  left: 0;
  top: 0;
  z-index: 0;
}
.pageheader h1,ul{
  position: relative;
  z-index: 1;
}
.pageheader h1{
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 20px
}
.pageheader ul li{
  position: relative;
  margin-right: 15px;
  padding-right: 20px;
  font-size: 16px;
}
.pageheader ul li::before{
  position: absolute;
  content: '/';
  display: block;
  color: #fff;
  right: 0;
}
.pageheader ul li:last-child{
  margin-right: 0;
  padding-right: 0;
}
.pageheader ul li:last-child:before{
  display: none;
}
.pageheader ul li a{
  color: #fff;
}
/* ------------------------------------ */
ul.leftmenu.ace-responsive-menu.collapse{
  display: block;
}
ul.leftmenu[data-menu-style="accordion"] {
  width: 100%;
}
.leftmenu.ace-responsive-menu{
  background:var(--mg-);
  border: 1px solid var(--mg-c3-alt);
}
ul.leftmenu[data-menu-style="accordion"] > li:first-child {
  border-top: 1px solid var(--mg-c3-alt);
}
ul.leftmenu[data-menu-style="accordion"] > li {
  border-bottom: 1px solid var(--mg-c3-alt);
}
.leftmenu.ace-responsive-menu > li > a{
  color: var(--mg-c4);
  padding: 10px 20px;
  line-height: 1.2em;
}
ul.leftmenu[data-menu-style="accordion"] li a:hover {
  background: transparent !important;
  color: var(--mg-c1);
}
.leftmenu.ace-responsive-menu li.menu-active > a,
.leftmenu.ace-responsive-menu li.active > a{
  background: transparent !important;
  color: var(--mg-c1);
}
.leftmenu.ace-responsive-menu li ul.sub-menu {
  background: var(--mg-c3-alt);
  /* padding-left: 30px; */
}
.leftmenu.ace-responsive-menu li ul.sub-menu li a{
  color: var(--mg-c4);
  padding: 10px 30px;
  line-height: 1.2em;
  border-bottom: 1px solid #ccc;
}
/* ------------------------------------ */
.front_announ{
  background-color: #fff;
  padding: 6px 0;
}
.front_announ .wrap{
  width: 100%;
  line-height: 20px;
  overflow: hidden;
  position: relative;
  padding-left: 120px;
}
.front_announ .title{
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  margin-right: 10px;
  width: 120px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 2;
  font-size: 12px;
}
.front_announ .wrap ul{
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.front_announ .wrap ul li{
  display: inline;
  margin-right: 150px;
}
.front_announ .wrap ul li a{
  color: var(--mg-c4);
  text-transform: uppercase;
  font-weight: 400;
}
.front_announ .wrap ul li a:hover{
  color: var(--mg-c1);
}
/* ------------------------------------ */
.lunchpad{
  position: relative;
  padding: 45px 0;
  /* background-image: url('../img/lunchpad.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed; */
}
.lunchpad::before{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #1E3F6C;
  opacity: 0.75;
  left: 0;
  top: 0;
  z-index: 0;
}
.lunchpad .container{
  position: relative;
  z-index: 1;
}
.lunchpad .item{
  height: 100%;
}
.lunchpad .item a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 10px 10px;
  border-radius: 10px;
  text-align: center;
}
.lunchpad .item a .icon{
  display: inline-block;
  width: 65px;
  height: 65px;
  background-color: var(--mg-c1);
  border-radius: 50%;
  text-align: center;
  margin-bottom: 15px;
  opacity: .75;
}
.lunchpad .item a .icon img{
  height: 25px;
  width: auto;
  margin-top: 20px;
  opacity: 1;
}
.lunchpad .item a .name{
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.lunchpad .item a:hover{
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
/*  */
.lunchpad.nobg{
  background: var(--mg-c3);
}
.lunchpad.nobg:before{
  display: none;
}
 .lunchpad.nobg .item{
  padding-bottom: 25px;
}
.lunchpad.nobg .item a{
  background-color: #fff;
}
.lunchpad.nobg .item a .name{
  color: var(--mg-c4);
}
/* ------------------------------------ */
.partner_links{
  position: relative;
  padding: 0 65px;
}
.partner_links .item{
  padding: 0;
  text-align: center;
}
.partner_links .item img{
  height: 55px;
  width: auto;
  display: inline-block;
  margin-bottom: 15px;
  opacity: 0.9;
}
.partner_links .item .name{
  text-transform: uppercase;
  color: var(--mg-c4);
  line-height: 1.2em;
  font-size: 12px;
}
.partner_links .item:hover img{
  opacity: 1;
}
.partner_links .item:hover .name{
  color: var(--mg-c1);
}
.partner_links .owl-nav{
  margin-top: 0;
}
.partner_links .owl-nav .owl-prev,
.partner_links .owl-nav .owl-next{
  position: absolute;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background: #fff;
  color: var(--mg-c4);
  top: 50%;
  transform: translate(0,-50%);
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
  margin: 0;
  padding: 0;
}
.partner_links .owl-nav .owl-prev i,
.partner_links .owl-nav .owl-next i{
  font-size: 16px;
  margin-top: 5px;
}
.partner_links .owl-nav .owl-prev{
  left: 0;
}
.partner_links .owl-nav .owl-next{
  right: 0;
}
.partner_links .owl-nav .owl-prev:hover,
.partner_links .owl-nav .owl-next:hover{
  background-color: var(--mg-c1);
}
/* ------------------------------------ */
.search_result{}
.search_result .item img {
  width: 150px;
  height: auto;
}

/* ------------------------------------ */
.contactus {
  margin: 70px auto;
}
.contactlist{
  font-size: 16px;
  font-weight: 300;
}
.contactlist li{
  margin-bottom: 15px
}
.contactlist li i{
  color: var(--mg-c1);
}

.contactus .inlinesocial li{
  margin-right: 10px;
}
.contactus .inlinesocial li a{
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--mg-c3-hover);
  border-radius: 5px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
}
.contactus .inlinesocial li a:hover{
  background-color: var(--mg-c1);
  color: #fff;
}
/* ------------------------------------ */
.feedback{
  margin: 70px auto;
}
.feedback_item .name{
  font-size: 18px;
  font-weight: 700;
}
.feedback_item .name small{
  font-weight: 300;
}
.feedback_item .info{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}
.feedback_item .info li{
  display: inline-block;
  margin-right: 30px;
}
.feedback_item .info li .fas{
  color: var(--mg-c1);
  margin-right: 5px;
}
.feedback_item .card-footer span{
  font-weight: 700;
}
/* ------------------------------------ */
.mgpagination{
  list-style: none;
  margin: 0;
  padding: 0;
}
.mgpagination li{
  display: inline-block;
  margin: 2px;
}
.mgpagination li a{
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.2);
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  color: var(--mg-c4);
}
.mgpagination li a:hover{
  color: var(--mg-c1);
}
.mgpagination li.active a{
  background-color: var(--mg-c1);
  color: #fff;
}
/* ------------------------------------ */
.edtext img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------ */
.errors ul li {
  list-style: none;
  color: #AA3939;
  margin-bottom: 8px;
}

/* ------------------------------------ */
#bigloader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

#bigloader:before {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  content: "\f1ce";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--mg-c1);
  font-size: 44px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-top: -22px;
  margin-left: -22px;
  -webkit-animation: 1s linear infinite spinner-border;
  animation: 1s linear infinite spinner-border;
}
/* ------------------------------------ */
.tenderlist .item .date{
  position: relative;
  text-align: center;
  font-size: 16px;
  border: 1px solid var(--mg-c3);
}
.tenderlist .item .date div{
  background-color: var(--mg-c1);
  padding: 5px 10px;
  color: #fff;
}
.tenderlist .item .date span{
  font-size: 150%;
  line-height: 2em;
  color: var(--mg-c1);
}
.tenderlist .item .title{
  margin-bottom: 15px;
}
.tenderlist .item .title a{
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mg-c4);
  font-family: var(--mg-font2);
}
.tenderlist .item .title a:hover{
  color: var(--mg-c1);
}
.tenderlist .item .infolist{
  list-style: none;
  margin: 0;
}
.tenderlist .item .infolist li{
  margin-bottom: 2px;
  color: #444;
}
.tenderlist .item .infolist li span{
  margin-right: 10px;
  font-weight: 300;
  color: #555;
}
/* ------------------------------------ */
.poll_list .item{
  /* padding-top: 5px; */
  margin-bottom: 40px;
  transition: all 0.3s ease 0s;
}
.poll_list .item .count{
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  color: var(--mg-c3-hover);
  border: 2px solid var(--mg-c1);
  border-radius: 20px;
  font-size: 18px;
  padding: 5px 15px;
  transform: translate(20px, -50%);
  font-weight: 300;
}
.poll_list .item .badge{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 7px 15px;
}
.poll_list .item h3{
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--mg-c4);
}
.poll_list .item:hover .card{
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.poll_list .item .poll_result{
  width: 100% !important;
  position: relative;
  height: 300px !important;
}

.polldetail .badge{
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
  padding: 7px 15px;
  margin-bottom: 10px;
}
.polldetail .ques{
  font-size: 18px;
  font-weight: 400;
  color: var(--mg-c4);
}
.polldetail .ques p.text-mute{
  margin-top: 10px;
  font-size: 12px;
  color: var(--mg-c3-hover);
}
.polldetail .options{
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--mg-c3);
}
/* ------------------------------------ */
.detail{
  margin-top: 40px;
  margin-bottom: 60px;
}
.detail .maintitle{
  font-size: 26px;
  font-weight: 700;
  font-family: var(--mg-font2);
  color: var(--mg-c1);
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--mg-c3);
  line-height: 1.3em;
}
.detail .mainimage{
  margin-bottom: 30px;
}
.detail .edtext h1,
.detail .edtext h2,
.detail .edtext h3,
.detail .edtext h4,
.detail .edtext h5,
.detail .edtext h6{
  font-family: var(--mg-font2) !important;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: 1.3em;
}
.detail .edtext{
  font-size: 16px;
}
.detail .edtext{
  max-width: 100% !important;
  height: auto;
}
.detail .edtext ul,
.detail .edtext ol{
  padding-left: 40px;
}
.detail .edtext .wp-block-gallery{
  padding-left: 0;
  list-style: none;
}
.detail .edtext img{
  margin-bottom: 20px;
  margin-right: 20px;
}
.detail .sharer{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--mg-c3);
}
/* --------------------------------------------------------- */
.list .item{
  border-bottom: 1px solid var(--mg-c3-alt);
}
.list .item:last-child{
  border-bottom: none;
}
.list .item .mainimg{
  border-radius: 10px;
  overflow: hidden;
}
.list .item .title{
  font-size: 18px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-family: var(--mg-font2);
  font-weight: 700;
}
.list .item .title a{
  color: var(--mg-c4);
  transition: all 0.3s ease 0s;
}
.list .item .title a:hover{
  color: var(--mg-c1);
}
.list .item .pdate{
  color: var(--mg-c3-hover) !important;
  font-size: 12px;
  text-transform: uppercase;
}
.list .item .descrip{
  color: #666;
}
/*--------------------- socialButton ---------------------*/
.socialButton{
  width: 100%;
  display: block;
  padding: 6px 12px;
  border: 1px solid transparent;
  background-image: none;
  border-radius: 4px;
  cursor: pointer;

  position: relative;
  padding-left: 44px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.socialButton.inlineblock{
  display: inline-block;
  width: auto;
  margin-right: 10px;
}

.socialButton.facebook{
  color: #fff !important;
  background-color: #3b5998;
  border-color: rgba(0,0,0,0.2);
}
.socialButton.facebook:hover{
  color: #fff !important;
  background-color: #2d4373;
  border-color: rgba(0,0,0,0.2);
  text-decoration: none;
}
.socialButton.facebook:before{
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: '\f39e';
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0,0,0,0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 16px;
  text-align: center;
  line-height: 33px;
}

.socialButton.instagram{
  color: #fff !important;
  background-color: #e1306c;
  border-color: rgba(0,0,0,0.2);
}
.socialButton.instagram:hover{
  color: #fff !important;
  background-color: #c13584;
  text-decoration: none;
}
.socialButton.instagram:before{
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: '\f16d';
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0,0,0,0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 14px;
  text-align: center;
  line-height: 33px;
}
/*********/
.socialButton.twitter{
  color: #fff !important;
  background-color: #55acee;
  border-color: rgba(0,0,0,0.2);
}
.socialButton.twitter:hover{
  color: #fff !important;
  background-color: #2795e9;
  border-color: rgba(0,0,0,0.2);
  text-decoration: none;
}
.socialButton.twitter:before{
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: '\f099';
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0,0,0,0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 14px;
  text-align: center;
  line-height: 33px;
}

.socialButton.google{
  color: #fff !important;
  background-color: #de5246;
  border-color: #de5246;
}
.socialButton.google:hover{
  color: #fff !important;
  background-color: #bd463c;
  border-color: #bd463c;
  text-decoration: none;
}
.socialButton.google:before{
  position: absolute;
  display: block;
  width: 32px;
  height: 100%;
  content: '\f1a0';
  top: 0;
  left: 0;
  border-right: 1px solid rgba(0,0,0,0.2);
  font-family: "Font Awesome 5 Brands";
  font-size: 16px;
  text-align: center;
  line-height: 33px;
}
/* ------------------------------------ */
.orglist .item img{
  border-radius: 10px;
}
.orglist .item h4{
  font-family: var(--mg-font2);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.orglist .item ul{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.orglist .item ul li{
  margin-bottom: 5px;
}
.orglist .item ul li a{
  color: var(--mg-c3-hover);
  transition: all 0.3s ease;
}
.orglist .item ul li a i{
  margin-right: 10px;
  color: var(--mg-c1);
}
.orglist .item ul li a:hover{
  color: var(--mg-c1);
}
/* ------------------------------------ */
.sitemap ul{
  padding-left: 80px;
  list-style: none;
  font-size: 16px;
  position: relative;
}
/*  */
.sitemap ul:before{
  position: absolute;
  display: block;
  content: '';
  width: 1px;
  height: calc( 100% - 11px );
  background: var(--mg-c3-alt);
  left: 10px;
  top: 0;
}
.sitemap ul li{
  position: relative;
  margin-bottom: 5px;
}
.sitemap ul li:before{
  position: absolute;
  display: block;
  content: '';
  height: 1px;
  width: 60px;
  background: var(--mg-c3-alt);
  left: -70px;
  top: 12px;
}
/* .sitemap ul li::after{
  position: absolute;
  display: block;
  content: '';
  height: 30px;
  width: 1px;
  background: var(--mg-c3-alt);
  left: -40px;
  top: 0;
} */
/* .sitemap ul li.dropdown:before{

} */
.sitemap ul li a{
  color: var(--mg-c4);
}
.sitemap ul li a:hover{
  color: var(--mg-c1);
}
/*  */
.sitemap ul.main{
  padding-left: 0;
}
.sitemap ul.main:before{
  display: none;
}
.sitemap ul.main > li:before,
.sitemap ul.main > li:after{
  display: none;
}
.sitemap ul.main > li{
  margin-bottom: 15px;
}
.sitemap ul.main > li > a {
  text-transform: uppercase;
  font-weight: 700;
}
/* ------------------------------------ */
.mgchart{
  width: 100% !important;
  height: 500px !important;
}
/* ------------------------------------ */
footer {
  background: var(--mg-c1-alt);
  color: #fff;
  padding: 40px 0 20px;
}
footer .fbrand{
  margin-bottom: 20px;
}
footer .fbrand img{
  height: 50px;
  width: auto;
}
footer .fbrand .text {
  display: inline-block;
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
  font-family: var(--mg-font2);
}
footer .fbrand .text div {
  font-weight: 700;
  font-size: 19px;
  line-height: 19px;
  text-transform: uppercase;
}
footer .fbrand .text span {
  font-weight: 300;
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
}
footer .fbrand .text::before {
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 35px;
  background-color: var(--mg-c3-hover);
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.5;
}
footer .fcontact{
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .fcontact li{
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
footer .ftitle{
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 45px;
}
footer .counter_item{
  position: relative;
  padding-left: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}
footer .counter_item .count{
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
footer .counter_item::before{
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, .5);
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
}
footer .copyright{
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin-top: 25px;
}
.backtotop{
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, .75);
  color: var(--mg-c4);
  text-align: center;
  bottom: 40px;
  right: 20px;
  border-radius: 50%;
}
.backtotop i{
  font-size: 24px;
  line-height: 50px;
}
.backtotop:hover{
  background-color: var(--mg-c1);
  color: #fff;
}

.svgmap {
  width: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/bg-haldun.jpeg');
  padding: 50px 80px;
}
.svgmap::before{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
  left: 0;
  top: 0;
  z-index: 0;
}

.svgmap svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.svgmap path{
  fill: var(--mg-c1);
  opacity: .6;
}
.svgmap a:hover path {
  /* fill: var(--mg-c1-alt); */
  opacity: 1;
}
.svgmap a text{
  font-size: 9px;
  fill: #fff;
  text-transform: uppercase;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.svgmap a text.tosgon{
  text-transform: none;
}
/* -------------------------------- */
.sumd_stat_svg{
  width: 100%;
  text-align: center;
}
.sumd_stat_svg svg{
  width: 60%;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.sumd_stat_svg a text{
  font-size: 9px;
  fill: #fff;
  text-transform: uppercase;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.sumd_stat_svg a .map {
  fill: var(--mg-c1);
}
.sumd_stat_svg a:hover .map{
  fill: var(--mg-c1-hover);
}
.sumd_stat_svg a .info {
  opacity: 0;
}

.sumd_stat_svg #mginfo{
  fill: #000;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--mg-font2);
}
/* -------------------------------- */
.stat_title{
  font-size: 22px;
  font-family: var(--mg-font2);
  color: var(--mg-c5);
  font-weight: 700;
  text-align: center;
}
/* -------------------------------- */
.modal.show{
  z-index: 999999999999;
}
.swal2-container{
  z-index: 9999999999999 !important;
}
/* ------------------------------------------------ */
.barchart{
  height: 300px;
}
/* ------------------------------------------------ */
.container,
.core-nav .nav-container{
  max-width: 1040px;
}
/* @media (min-width: 1200px) {
  .container{
    width: 1040px !important;
  }
} */
@media (max-width: 1200px) {
  nav .content-header form .input-group input {
    width: auto;
  }
  nav .content-header form{
    width: 100%;
  }
  /* ------------------------------ */
  #mainslider .item .container .position{
    font-size: 28px;
    line-height: 35px;
  }
  #mainslider .item .container .name{
    font-size: 28px;
    line-height: 28px;
  }
  #mainslider .item .container .phone{
    font-size: 28px;
    line-height: 32px;
  }
  /* -------------------------- */
  .pageheader ul{
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  nav#mainmenu {
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
  }
  nav#mainmenu .wrap-core-nav-list{
    background: var(--mg-c1);
  }
  nav#mainmenu .nav-header {
    margin: 6px 0 0;
  }

  nav#mainmenu .nav-header .brand {
    margin: 0 auto 6px;
    float: none;
    position: relative;
    top: 0;
    padding: 0;
  }
  nav#mainmenu .nav-header .brand img{
    height: 50px;
  }
  nav#mainmenu .brand .text div {
    font-size: 18px;
    line-height: 18px;
  }
  nav#mainmenu .nav-header .brand .text span {
    font-size: 10px;
    line-height: 10px;
  }

  nav#mainmenu .nav-header .toggle-bar {
    font-size: 18px;
    position: absolute;
    top: 12px;
    left: 15px;
  }

  nav#mainmenu .menu li a {
    padding: 8px;
    border: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #f1f1f1;
  }

  nav#mainmenu .menu li a:hover {
    color: #fff;
  } 

  nav#mainmenu .menu li:last-child a {
    border-bottom: none !important;
  }

  nav#mainmenu .content-header {
    padding: 7px 15px;
    background: #fff;
    border-bottom: solid 1px var(--mg-c3);
    text-align: right;
  }

  nav#mainmenu .content-header .row {
    height: auto;
  }

  nav#mainmenu .nav-header ul.attributes li a {
    padding: 14px 8px;
  }

  nav#mainmenu .menu>li>a:after{
    display: none;
  }

  nav#mainmenu .menu .dropdown-content li a{
    border-top: none;
    padding: 8px 0px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    text-transform: none;
    font-weight: 300;
    font-size: 90%;
  }

  /* .core-nav .wrap-core-nav-list{
    margin-top: auto !important;
    -webkit-transition: all .6s ease-in-out;
    -khtml-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    max-height: 0 !important;
    opacity: 1 !important;
    overflow: hidden;
  }
  .core-nav.open-responsive .wrap-core-nav-list{
    max-height: none !important;
  } */
  /* nav#mainmenu .menu .dropdown-content li:last-child{
    margin-bottom: 20px;
  }
  nav#mainmenu .menu .dropdown-content li:last-child a{
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  } */

  .core-nav.open-responsive .wrap-core-nav-list {
    max-height: none;
  }
  nav#mainmenu .dropdown-content{
    background-color: transparent;
  }
  /* ---------------------------------------------- */
  #mainslider .item .container{
    height: 350px;
  }
  #mainslider .item .container .img img{
    height: 320px;
  }
  #mainslider .item .container .position{
    font-size: 22px;
    line-height: 28px;
  }
  #mainslider .item .container .name{
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 25px;
  }
  #mainslider .item .container .desc{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 50px;
  }
  #mainslider .item .container .phone{
    font-size: 28px;
    line-height: 28px;
  }
  /* -------------------------- */
  .pageheader{
    padding-top: 40px;
  }
  .pageheader h1{
    font-size: 24px;
  }
  .pageheader ul{
    padding: 0 20px;
  }
  /* ----------------------- */
  .svgmap {
    padding: 50px 20px;
  }
  /* ----------------------- */
  .mgchart{
    height: 400px !important;
  }
  /* --------------------- */
  .poll_list .item .count{
    transform: translate(5px, -50%);
    font-size: 16px;
  }
  .poll_list .item .badge{
    font-size: 12px;
  }
  .poll_list .item .poll_result{
    height: 230px !important;
  }
}

@media (max-width: 767px) {
  nav#mainmenu .content-header form .input-group input{
    width: 1%;
  }
  nav#mainmenu .nav-header .toggle-bar {
    top: 0;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 50px;
  }
  nav#mainmenu .nav-header .brand{
    text-align: center;
    width: 100%;
    padding-left: 50px;
  }
  nav#mainmenu .nav-header .brand .text{
    display: none;
  }
  nav#mainmenu .nav-header ul.attributes li a{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    padding: 0;
    display: block;
    text-align: right;
  }
  nav#mainmenu .content-header form .input-group .form-control {
    padding: 0px 10px;
  }
  /* ---------------------------------------------- */
  #mainslider .item .container .content{
    width: 60%;
    padding-left: 15px;
  }
  #mainslider .item .container{
    height: 250px;
  }
  #mainslider .item .container .img img{
    height: 200px;
  }
  #mainslider .item .container .position{
    font-size: 16px;
    line-height: 22px;
  }
  #mainslider .item .container .name{
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
  }
  #mainslider .item .container .desc{
    display: none;
  }
  #mainslider .item .container .phone{
    font-size: 24px;
    line-height: 24px;
  }
  /* ---------------------------------------------- */
  ul.leftmenu.ace-responsive-menu.collapse{
    display: none;
  }
  /* ---------------------------------------------- */
  .front_announ .title {
    display: none;
  }
  .front_announ .wrap{
    padding-left: 0;
  }
  /* -------------------------- */
  .pageheader{
    padding-top: 30px;
    padding-bottom: 15px;
    height: auto;
  }
  .pageheader h1{
    font-size: 18px;
    margin-bottom: 20px;
  }
  .pageheader ul{
    padding: 0 20px;
  }
  .pageheader ul li{
    font-size: 14px;
  }
  /* ---------------------------------------------- */
  .leftmenu_wrap{
    margin-bottom: 30px;
    float: left;
    width: 100%;
  }
  .leftmenu_wrap .menu-toggle{
    background: var(--mg-c3-alt);
    color: var(--mg-c4);
  }
  .leftmenu_wrap .menu-toggle .ace-menu-btn{
    background: var(--mg-c1);
    border: 1px solid var(--mg-c1-hover); 
    margin: 5px;
  }
  .leftmenu_wrap .menu-toggle h3 {
    float: left;
    color: var(--mg-c4);
    padding: 0px 10px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 46px;
    margin: 0;
  }
  .leftmenu.ace-responsive-menu > li:first-child {
    border-top: 2px solid var(--mg-c3-hover);
  }
  .leftmenu.ace-responsive-menu > li {
    border-bottom: 1px solid var(--mg-c3-alt);
  }
  /* ---------------------------------------------- */
  footer{
    padding: 30px 0 15px;
  }
  footer .ftitle{
    margin-bottom: 30px;
  }
  footer .counter_item {
    font-weight: 400;
    font-size: 12px;
  }
  footer .counter_item .count{
    font-size: 22px;
    line-height: 26px;
  }
  footer .counter_item::before{
    height: 40px;
  }
  footer .copyright{
    font-weight: 400;
    font-size: 12px;
  }
  /* --------------------------------------- */
  .svgmap {
    padding: 10px 0px;
  }
  /* --------------------------------------- */
  .barchart{
    height: 300px;
  }
  /* --------------------------------------- */
  .list .item .title{
    font-size: 16px;
    margin-top: 10px;
  }
  /* ------------------- */
  .mgchart{
    height: 300px !important;
  }
  /* -------------------- */
  .poll_list .item .badge{
    font-size: 10px;
    margin-top: 15px;
  }
  .poll_list .item h3{
    margin-top: 10px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #mainslider .item .container .content{
    width: 100%;
    z-index: 2;
    transform: translate(0,-50%);
    text-shadow: 0px 0px 2px #000000;
  }
  #mainslider .item .container .position{
    /* display: none; */
    width: 50%;
  }
  #mainslider .item .container .phone{
    font-size: 14px;
    line-height: 14px;
  }
  #mainslider .item .container{
    height: 200px;
  }
  
  #mainslider .item .container .img img{
    height: 180px;
  }
}