@keyframes hareket {
  0% {
    height: 0px;
  }
  50% {
    height: 150px;
  }
  100% {
    height: 0px;
  }
}
* {
  margin: 0px;
  font-family: 'Open Sans', sans-serif;
}
.transform {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
p {
  margin-bottom: 0;
}
.transition {
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #EDEDED;
  overflow-y: scroll;
}
.homeBg {
  background: url("../images/bg.jpg") bottom center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  left: 0;
  top: 0;
  z-index: 1060;
  overflow: hidden;
}
.loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.loadingLogo {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
}
.loadingLogo > img {
  width: 150px;
  height: auto;
  display: block;
  animation-name: hareket;
  animation-duration: 1s;
  animation-delay: 0.35s;
  animation-iteration-count: infinite;
}
header {
  position: relative;
}
header:before {
  content: "";
  background: url("../images/optimus-icon.svg") bottom right no-repeat;
  background-size: cover;
  width: 300px;
  height: 300px;
  position: absolute;
  left: -120px;
  top: -75px;
  z-index: -1;
}
header .logo {
  margin: 50px 0 0 40px;
  display: block;
  width: 180px;
}
header .logo > img {
  width: 100%;
  height: auto;
}
header .bannerBox {
  width: 100%;
  height: 75vh;
  position: relative;
  box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.2);
  background: #23358C;
}
header .bannerBox .bannerBoxImages {
  position: relative;
  opacity: 0.25;
  height: 100%;
  overflow: hidden;
}
header .bannerBox .bannerBoxImages > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .bannerBox .bannerBoxText {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 1;
}
header .bannerBox .bannerBoxText > span {
  font-size: 16px;
  color: white;
  line-height: 30px;
  font-weight: 700;
  display: block;
}
header .bannerBox .bannerBoxText > h1 {
  font-size: 64px;
  color: white;
  line-height: 80px;
  font-weight: 900;
  width: calc(100vw - 22vw);
  text-shadow: 10px 10px 40px rgba(0, 0, 0, 0.5);
}
header .bannerInnerBox {
  width: 100%;
  height: 20vh;
  position: relative;
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.2);
  background: #23358C;
}
header .bannerInnerBox .bannerInnerBoxImages {
  position: relative;
  opacity: 0.25;
  height: 100%;
  overflow: hidden;
}
header .bannerInnerBox .bannerInnerBoxImages > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .bannerInnerBox .bannerInnerBoxText {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 1;
}
header .bannerInnerBox .bannerInnerBoxText > h1 {
  font-size: 40px;
  color: white;
  line-height: 40px;
  font-weight: 900;
  text-shadow: 10px 20px 30px rgba(0, 0, 0, 0.3);
}
header .headerRight {
  margin: 50px 40px 0 0;
  text-align: right;
  position: relative;
  z-index: 2;
  width: auto;
}
header .headerRight .headerInnerRight .headerInnerRightUp > a {
  position: relative;
  margin: 0px 20px;
}
header .headerRight .headerInnerRight .headerInnerRightUp > a > span {
  font-size: 14px;
  color: #23358C;
  font-weight: 500;
  position: relative;
}
header .headerRight .headerInnerRight .headerInnerRightUp > a > i {
  display: none;
  font-size: 18px;
  color: #23358C;
  position: relative;
}
header .headerRight .headerInnerRight .headerInnerRightUp > a:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: #23358C;
  right: -20px;
  top: 3px;
}
header .headerRight .headerInnerRight .headerInnerRightUp > a:last-child {
  margin: 0px 0 0 20px;
}
header .headerRight .headerInnerRight .headerInnerRightUp > a:last-child:before {
  display: none;
}
header .headerRight .headerInnerRight .navMenu {
  list-style: none;
  border-top: solid 1px #cccccc;
  margin-top: 10px;
  padding-top: 10px;
  display: inline-block;
  padding-left: 0;
}
header .headerRight .headerInnerRight .navMenu > li {
  display: inline-block;
  margin-right: 20px;
}
header .headerRight .headerInnerRight .navMenu > li:last-child {
  margin-right: 0px;
}
header .headerRight .headerInnerRight .navMenu > li > a {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
  position: relative;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
header .headerRight .headerInnerRight .navMenu > li > a:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
header .headerRight .headerInnerRight .navMenu > li > a:hover {
  text-decoration: none;
  color: #23358C;
}
header .headerRight .headerInnerRight .navMenu > li a.active {
  color: #23358C;
}
header .headerRight .headerInnerRight .navMenu > li a.active:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #23358C;
}
.main {
  overflow-x: clip;
}
.main .buttonArea {
  position: relative;
  height: 70px;
  margin-top: -15vh;
}
.main .buttonArea:before {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  width: 150px;
  height: 1px;
  background: #ffffff;
}
.main .buttonArea .homeButton {
  border: solid 1px #ffffff;
  border-radius: 30px;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
  margin-left: 15%;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .buttonArea .homeButton:hover {
  text-decoration: none;
  padding: 0 40px;
}
.main .homeText {
  font-size: 14px;
  color: #23358C;
  position: relative;
  height: 70px;
  padding-left: 150px;
  margin-top: -15vh;
  font-weight: 600;
}
.main .homeText:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 150px;
  height: 1px;
  background: #23358C;
}
.main .socialMedia {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 8%;
  top: 50%;
  color: #666666;
  font-size: 24px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .socialMedia:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 150px;
  background: #cccccc;
  top: -160px;
  left: 50%;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .socialMedia:hover {
  color: #23358C;
}
.main .socialMedia:hover:before {
  height: 50px;
  top: -60px;
}
.main .innerBox {
  margin: 10vh auto;
  min-height: 200px;
}
.main .innerBox p {
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}
.main .innerBox a {
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
}
.main .innerBox .specialUl {
  padding-left: 20px;
}
.main .innerBox .specialUl li {
  color: #666666;
  font-size: 14px;
  margin-top: 3px;
}
.main .innerBox .pageTitle {
  font-size: 20px;
  color: #23358C;
  display: block;
}
.main .innerBox .productItem {
  display: flex;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  min-height: 15rem;
}
.main .innerBox .productItem:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.main .innerBox .productItem .productIcon {
  background: #3E5AA6;
  width: 30%;
  height: auto;
  position: relative;
}
.main .innerBox .productItem .productIcon > img {
  max-height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  max-width: 50%;
  height: auto;
  border: 0;
}
.main .innerBox .productItem .productText {
  width: 70%;
  height: auto;
  padding: 20px;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .productItem .productText strong {
  font-size: 16px;
  color: #23358C;
  display: block;
  font-weight: 700;
}
.main .innerBox .productItem .productText p {
  font-size: 14px;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main .innerBox .productItem .productText span {
  font-size: 14px;
  font-weight: bold;
  color: #23358C;
  position: relative;
}
.main .innerBox .refItem {
  width: 100%;
  height: 17vh;
  background: #ffffff;
  position: relative;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .refItem:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.main .innerBox .refItem:hover > img {
  filter: grayscale(0);
  opacity: 1;
}
.main .innerBox .refItem > img {
  max-height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  max-width: 80%;
  height: auto;
  border: 0;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .careerBox .careerCard {
  padding: 30px;
  background: #ffffff;
  position: relative;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .careerBox .careerCard > strong {
  font-size: 18px;
  color: #23358C;
  margin-bottom: 10px;
  display: block;
}
.main .innerBox .careerBox .careerCard > ul {
  padding: 0;
  list-style: none;
}
.main .innerBox .careerBox .careerCard > ul li {
  font-size: 14px;
  color: #666666;
  margin-top: 3px;
}
.main .innerBox .careerBox .careerCard a {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 14px;
  font-weight: 900;
  color: #3E5AA6;
  text-decoration: none;
}
.main .innerBox .careerBox .careerCard a:before {
  content: "";
  position: absolute;
  transform: translate(-50%, 0);
  bottom: 30px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #23358C;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .careerBox .careerCard a:hover:before {
  height: 30px;
}
.main .innerBox .careerBox .careerCard:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.main .innerBox .careerBox .careerInformation {
  padding: 30px;
  background: #ffffff;
  position: relative;
}
.main .innerBox .careerBox .careerInformation > strong {
  font-size: 18px;
  color: #23358C;
  margin-bottom: 10px;
  display: block;
}
.main .innerBox .careerBox .careerInformation > ul {
  padding-left: 20px;
}
.main .innerBox .careerBox .careerInformation > ul li {
  font-size: 14px;
  color: #666666;
  margin-top: 15px;
}
.main .innerBox .careerBox .careerInformation a {
  width: 100%;
  height: 50px;
  background: #23358C;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  text-decoration: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .careerBox .careerInformation a:hover {
  background: #3E5AA6;
}
.main .innerBox .careerBox .careerInformation a > i {
  font-size: 22px;
  margin-right: 10px;
}
.main .innerBox .news {
  display: flex;
  background: #ffffff;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .news:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.main .innerBox .news .newsImages {
  width: 30%;
  height: 120px;
  position: relative;
  background: #F8F8F8;
}
.main .innerBox .news .newsImages > img {
  max-height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  max-width: 70%;
  height: auto;
  border: 0;
}
.main .innerBox .news .newsImages.fullCoverImage > img {
  max-height: 100%;
  max-width: 100%;
  height: 120px;
  width: 100%;
  object-fit: cover;
}
.main .innerBox .news .newsInner {
  width: 70%;
  height: 120px;
  padding: 20px 20px 0px 20px;
}
.main .innerBox .news .newsInner > span {
  display: block;
  font-size: 12px;
  color: #666666;
}
.main .innerBox .news .newsInner > strong {
  display: block;
  font-size: 14px;
  color: #23358C;
}
.main .innerBox .contact {
  display: flex;
  background: #ffffff;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.main .innerBox .contact:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.main .innerBox .contact .contactIcon {
  width: 20%;
  height: 120px;
  position: relative;
  background: #F8F8F8;
}
.main .innerBox .contact .contactIcon > img {
  max-height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  max-width: 70%;
  height: auto;
  border: 0;
}
.main .innerBox .contact .contactInner {
  width: 80%;
  height: 120px;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666666;
}
.main .innerBox .contact .contactInner > a {
  display: contents;
  font-size: 14px;
  color: #666666;
  text-decoration: none;
}
.main .innerBox .harita {
  border: solid 1px #cccccc;
  width: 100%;
  height: 408px;
  filter: grayscale();
}
.main .statistics-section {
  margin-top: 250px;
}
.main .statistics-container {
  background: #23358C;
  overflow-x: hidden;
}
.main .statistics-image {
  position: absolute;
  opacity: 0.25;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.main .statistics-item {
  border-bottom: #fff solid 1px;
  color: #fff;
  padding-left: 130px;
  padding-right: 130px;
  padding-bottom: 30px;
  padding-top: 12px;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  flex-direction: row;
}
.main .statistics-summary {
  padding: 50px;
  white-space: normal;
}
.main .statistics-item-title {
  font-size: 33px;
  color: #fff;
  font-weight: 700;
}
.main .statistics-item-single-item {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  padding-top: 30px;
  letter-spacing: 2.2px;
}
.main .statistics-item-content {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 12px;
}
.main .statistics-item-content-number {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.main .statistics-item-content-subtitle {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1.1px;
}
footer {
  width: 100%;
  position: relative;
}
footer .references {
  background: #ffffff;
}
footer .references .item {
  position: relative;
  height: 120px;
  display: block;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
footer .references .item:hover > img {
  filter: grayscale(0);
  opacity: 1;
}
footer .references .item > img {
  max-height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  max-width: 70%;
  height: auto;
  border: 0;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
footer .referancesButton {
  width: 100%;
  height: 100%;
  position: relative;
  color: #ffffff;
  background: #23358C;
  text-align: center;
  display: flex;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
footer .referancesButton > i {
  margin-right: 10px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  font-size: 18px;
}
footer .referancesButton:hover {
  text-decoration: none;
  background: #3E5AA6;
}
footer .referancesButton:hover > i {
  margin-right: 5px;
}
footer h2 {
  width: 100%;
  height: 120px;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 28px;
  color: #23358C;
  font-weight: 100;
  margin-bottom: 0;
  text-align: center;
}
footer span {
  font-size: 12px;
  height: 60px;
  color: #666666;
  justify-content: center;
  align-items: center;
  display: flex;
}
.homeFooter {
  position: relative;
  left: 0;
}
.nav-tabs {
  justify-content: center;
  border: 0;
}
.nav-tabs .nav-item.show .nav-link {
  color: #23358C;
  background: transparent;
  border-color: #23358C;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.nav-tabs .nav-link.active {
  color: #23358C;
  background: transparent;
  border-color: #23358C;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  color: #666666;
  font-size: 14px;
  border-radius: 30px;
  margin: 0px 10px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
}
.nav-tabs .nav-link:hover {
  color: #23358C;
  border: 1px solid #23358C;
}
.menu_ac {
  color: #23358C;
  font-weight: bold;
  cursor: pointer;
  display: none;
  width: 30px;
  height: 33px;
}
.menu_ac > span {
  width: 30px;
  height: 3px;
  display: block;
  margin-bottom: 8px;
  background: #23358C;
  margin-top: 2px;
}
.menu_ac > strong {
  font-size: 9px;
  letter-spacing: 1px;
  color: #23358C;
  text-align: center;
  display: block;
  margin-top: -1px;
}
.dateBox .point {
  text-align: center;
  font-size: 12px;
  color: #23358C;
  display: block;
}
.dateBox .date {
  text-align: center;
  font-size: 20px;
  color: #23358C;
  display: block;
  margin: 5px auto;
}
@media (min-width: 1200px) and (max-width: 1360px) {
  header .headerRight {
    margin: 50px 0px 0 0;
  }
  header .headerRight .headerInnerRight .navMenu > li {
    margin-right: 10px;
  }
  header .headerRight .headerInnerRight .navMenu > li > a {
    font-size: 13px;
  }
  header .headerRight .headerInnerRight .navMenu > li a.active:before {
    top: -15px;
  }
  header:before {
    width: 250px;
    height: 250px;
    left: -120px;
    top: -55px;
  }
  header .logo {
    margin: 50px 0 0 0px;
  }
  header .bannerBox {
    height: 60vh;
  }
  header .bannerBox .bannerBoxText > h1 {
    font-size: 56px;
    line-height: 70px;
  }
  .nav-tabs .nav-link {
    margin: 0px 5px;
  }
  .main .innerBox .refItem {
    height: 10vh;
  }
  footer .referancesButton > i {
    margin: 0 0 0 20px;
  }
}
@media (min-width: 0px) and (max-width: 1199px) {
  header:before {
    width: 200px;
    height: 200px;
    left: -95px;
    top: -60px;
  }
  header .headerRight {
    margin: 0px 0px 0 0;
    top: 30px;
    position: absolute;
    right: 0;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp {
    float: right;
    right: 70px;
    position: relative;
    width: 100%;
    top: 5px;
  }
  header .headerRight .headerInnerRight .navMenu {
    display: none;
    padding-top: 0;
    margin-top: 0;
    border: 0;
    background: rgba(35 53 140 / 98%);
    width: 100vw;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  }
  header .headerRight .headerInnerRight .navMenu > li {
    display: block;
    text-align: center;
    margin-right: 0;
    height: 60px;
    line-height: 60px;
  }
  header .headerRight .headerInnerRight .navMenu > li > a {
    color: #ffffff;
  }
  header .headerRight .headerInnerRight .navMenu > li a.active {
    color: #7497f5;
  }
  header .headerRight .headerInnerRight .navMenu > li a.active:before {
    display: none;
  }
  header .logo {
    margin: 20px auto;
    width: 100%;
  }
  header .logo > img {
    width: auto;
    height: 60px;
    position: relative;
    z-index: 10;
  }
  header .bannerBox {
    width: 85%;
    height: 60vh;
    left: 15%;
  }
  header .bannerBox .bannerBoxText {
    left: 10%;
  }
  header .bannerBox .bannerBoxText > span {
    font-size: 14px;
  }
  .menu_ac {
    display: block;
    margin-left: auto;
    margin-right: 15px;
    margin-bottom: 35px;
  }
  .main .statistics-summary .statistics-item-content {
    margin-bottom: 20px;
  }
  .main .statistics-section {
    margin-top: 50px;
  }
  .main .statistics-item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-tabs .nav-item {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .bannerBox .bannerBoxText > h1 {
    font-size: 56px;
    line-height: 70px;
  }
  .main .homeText {
    font-size: 12px;
  }
  .main .homeText:before {
    width: 100px;
  }
  .main .buttonArea:before {
    width: 100px;
  }
  .main .socialMedia {
    left: 4%;
  }
  .main .innerBox .refItem {
    height: 12vh;
  }
  footer .referancesButton > i {
    margin: 0 0 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header .bannerInnerBox .bannerInnerBoxText > h1 {
    font-size: 36px;
    line-height: 56px;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp > a > span {
    display: none;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp > a > i {
    display: inline-block;
  }
  header .bannerBox .bannerBoxText > h1 {
    font-size: 56px;
    line-height: 70px;
  }
  .main .innerBox .refItem {
    height: 12vh;
  }
  .main .homeText {
    margin: 30px auto;
    height: auto;
    padding-left: 0px;
  }
  .main .homeText > br {
    display: none;
  }
  .main .homeText:before {
    display: none;
  }
  .homeFooter {
    position: relative;
  }
  footer .referancesButton {
    height: 50px;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .homeBg {
    overflow-y: auto;
  }
  header .bannerBox .bannerBoxText > h1 {
    font-size: 50px;
    line-height: 60px;
  }
  header .bannerInnerBox .bannerInnerBoxText > h1 {
    font-size: 36px;
    line-height: 56px;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp > a > span {
    display: none;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp > a > i {
    display: inline-block;
  }
  .main .homeText {
    margin: 30px auto;
    height: auto;
    padding-left: 0px;
  }
  .main .homeText > br {
    display: none;
  }
  .main .homeText:before {
    display: none;
  }
  .homeFooter {
    position: relative;
  }
  footer .referancesButton {
    height: 50px;
  }
}
@media (min-width: 0) and (max-width: 576px) {
  .homeBg {
    overflow-y: auto;
  }
  header .bannerBox .bannerBoxText > h1 {
    font-size: 32px;
    line-height: 42px;
    width: auto;
  }
  header .bannerInnerBox .bannerInnerBoxText > h1 {
    font-size: 32px;
    line-height: 34px;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp > a > span {
    display: none;
  }
  header .headerRight .headerInnerRight .headerInnerRightUp > a > i {
    display: inline-block;
  }
  .main .homeText {
    margin: 30px auto;
    height: auto;
    padding-left: 0px;
  }
  .main .homeText > br {
    display: none;
  }
  .main .homeText:before {
    display: none;
  }
  .homeFooter {
    position: relative;
  }
  footer .referancesButton {
    height: 50px;
  }
}
.refrences-wrapper {
  margin-top: 10rem;
}
@media (min-width: 1200px) {
  header .headerRight .headerInnerRight .navMenu {
    display: inline-block !important;
  }
}
