* {
  text-decoration: none;
  list-style-type: none;
  outline: none;
  margin: 0px;
  padding: 0px;
  font-family: "Mulish", sans-serif;
}

.table-container {
  overflow-x: auto;
  float: left;
  width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 15px;
}

body {
  margin: 0px;
  padding: 0px;
}

div.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0px auto;
}

header {
  float: left;
  width: 100%;
  transition: 0.3s;
  position: fixed;
  z-index: 5555;
}

header > div.top {
  float: left;
  width: 100%;
  padding: 10px 0px;
  box-sizing: border-box;
  background-color: #01458c;
  transition: 0.1s;
}

header > div.top > div.wrapper > div.social_media {
  float: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header > div.top > div.wrapper > div.social_media > div.left {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

header > div.top > div.wrapper > div.social_media > div.left > a {
  float: left;
  width: 12.26px;
  height: 12.26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 15px;
}

header > div.bottom {
  float: left;
  width: 100%;
  padding: 10px 0px;
  box-sizing: border-box;
  background-color: #fff;
}

header > div.bottom > div.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header > div.bottom > div.wrapper > a.logo {
  float: left;
  width: 200px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/logo.svg");
  transition: 0.1s;
}

header > div.bottom > div.wrapper > ul {
  float: right;
  transition: 0.1s;
}

header > div.bottom > div.wrapper > ul > li {
  float: left;
  transition: 0.3s;
  position: relative;
}

header > div.bottom > div.wrapper > ul > li > a {
  font-size: 16px;
  color: #021152;
  font-weight: 800;
  padding: 10px 0px 10px 20px;
  box-sizing: border-box;
}

header > div.bottom > div.wrapper > ul > li > a:hover {
  color: #1871c9;
}

header > div.bottom > div.wrapper > ul > li > a.phone-head {
  font-size: 18px;
  font-weight: 800;
  color: #021152;
  border-left: 1px solid #ddd;
  margin-left: 20px;
}

header > div.bottom > div.wrapper > ul > li > a.active {
  color: #1871c9;
}

header > div.bottom > div.wrapper > ul > li > ul {
  display: none;
  position: absolute;
  width: 250px;
  background-color: #fff;
  margin-left: 10px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

header > div.bottom > div.wrapper > ul > li > ul > li {
  width: 100%;
  float: left;
  padding: 10px 0;
}

header > div.bottom > div.wrapper > ul > li > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  color: #5f5f5f;
  padding: 10px 0px 10px 20px;
  box-sizing: border-box;
  transition: 0.3s;
}

header > div.bottom > div.wrapper > ul > li > ul > li > a:hover {
  color: #13287e;
}

header > div.bottom > div.wrapper > ul > li:hover > ul {
  display: block;
}

header > div.bottom > div.wrapper > ul > li > div.dropdown {
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #fff;
  top: 90px;
  height: 0;
  transition: 0.3s;
  overflow: hidden;
}

header > div.bottom > div.wrapper > ul > li:hover > div.dropdown {
  height: 250px;
  padding: 20px 0;
  box-sizing: border-box;
}

header > div.bottom > div.wrapper > ul > li > div.dropdown > div.wrapper {
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s;
  transition-delay: 0.4s;
}

header > div.bottom > div.wrapper > ul > li:hover > div.dropdown > div.wrapper {
  transform: scale(1);
}

header > div.bottom > div.wrapper > ul > li > div.dropdown ul {
  float: left;
  width: 22.7%;
  margin-right: 3%;
}

header > div.bottom > div.wrapper > ul > li > div.dropdown ul > li > a {
  font-size: 16px;
  font-weight: 400;
  color: #565656;
  margin-bottom: 5px;
  box-sizing: border-box;
  width: 100%;
  float: left;
}

header > div.bottom > div.wrapper > ul > li > div.dropdown ul > li > a:hover {
  color: #01458c;
}

header > div.bottom > div.wrapper > ul > li > div.dropdown ul > li > a > span {
  color: #01458c;
  font-weight: 600;
}

header > div.bottom > div.wrapper > ul > li > div.dropdown ul:last-child {
  margin-right: 0;
}

div#header_clear {
  height: 90px;
  float: left;
  width: 100%;
}

header.scroll {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

div.breadcrump {
  float: left;
  width: 100%;
  padding: 40px 0px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-image: url("../img/breadcrump.jpg");
}

div.breadcrump > div.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div.breadcrump > div.wrapper > div.left {
  float: left;
}

div.breadcrump > div.wrapper > div.left > h2 {
  float: left;
  font-size: 51px;
  color: #fff;
  font-weight: 800;
}

div.breadcrump > div.wrapper > div.right {
  float: right;
}

div.breadcrump > div.wrapper > div.right > ol {
  float: left;
}

div.breadcrump > div.wrapper > div.right > ol > li {
  float: left;
}

div.breadcrump > div.wrapper > div.right > ol > li > a {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
}

div.breadcrump > div.wrapper > div.right > ol > li > a::after {
  content: "/";
  float: right;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin: 0px 10px;
}

div.breadcrump > div.wrapper > div.right > ol > li:last-child > a::after {
  display: none;
}

div.breadcrump > div.wrapper > div.right > ol > li > a.active {
  font-weight: 800;
}

div.corporate {
  float: left;
  width: 100%;
  padding: 80px 0px;
  box-sizing: border-box;
}

div.corporate > div.wrapper > div.right {
  float: right;
  width: 100%;
}

div.corporate > div.wrapper > div.right > div.title {
  float: left;
  width: 100%;
}

div.corporate > div.wrapper > div.right > div.title > h3 {
  float: left;
  width: 100%;
  color: #01458c;
  font-size: 30px;
  font-weight: 800;
}

div.corporate > div.wrapper > div.right > div.text {
  float: left;
  width: 100%;
}

div.corporate > div.wrapper > div.right > div.text > p {
  float: left;
  width: 100%;
  color: #565656;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 30px;
}

div.corporate > div.wrapper > div.right > div.text > ul {
  float: left;
  width: 100%;
  margin-top: 30px;
}

div.corporate > div.wrapper > div.right > div.text > ul > li {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 300;
  color: #565656;
  line-height: 35px;
}

div.corporate > div.wrapper > div.right > div.text > div.brands {
  float: left;
  width: 100%;
  margin: 60px 0px 30px 0px;
}

div.corporate > div.wrapper > div.right > div.text > div.brands > div.item {
  float: left;
  width: 23%;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 2.666667%;
}

div.corporate
  > div.wrapper
  > div.right
  > div.text
  > div.brands
  > div.item:nth-child(4n) {
  margin-right: 0;
}

div.contact {
  float: left;
  width: 100%;
  padding-top: 80px;
  box-sizing: border-box;
}

div.contact > div.wrapper > div.left {
  float: left;
  width: 55%;
}

div.contact > div.wrapper > div.left > div.title {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

div.contact > div.wrapper > div.left > div.title > h3 {
  font-size: 18px;
  font-weight: 800;
  color: #01458c;
}

div.contact > div.wrapper > div.left div.row {
  border: 1px solid #dfdfdf;
  height: 46px;
  width: 100%;
  float: left;
  margin-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

div.contact > div.wrapper > div.left div.row2 {
  float: left;
  width: 100%;
  height: 177px;
  box-sizing: border-box;
  border: solid 1px #dfdfdf;
  overflow: hidden;
  background-color: #fff;
}

div.contact > div.wrapper > div.left div.row label {
  float: left;
  width: 160px;
  color: #565656;
  font-size: 14px;
  font-weight: 300;
  line-height: 44px;
  box-sizing: border-box;
  padding-left: 10px;
  text-align: left;
}

div.contact > div.wrapper > div.left div.row label span {
  float: right;
  font-size: 14px;
  font-weight: 300;
  color: #565656;
}

div.contact > div.wrapper > div.left div.row input {
  float: left;
  width: calc(100% - 160px);
  height: 44px;
  box-sizing: border-box;
  columns: #565656;
  font-size: 14px;
  font-weight: 300;
  line-height: 44px;
  padding-left: 15px;
  box-sizing: border-box;
  border: none;
}

div.contact > div.wrapper > div.left div.row textarea {
  float: left;
  width: calc(100% - 160px);
  height: 175px;
  box-sizing: border-box;
  columns: #565656;
  font-size: 14px;
  padding: 12px 0px 0px 15px;
  font-weight: 300;
  box-sizing: border-box;
  border: none;
  resize: none;
}

div.contact > div.wrapper > div.left div.button {
  float: left;
  width: 100%;
}

div.contact > div.wrapper > div.left div.button button {
  float: right;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  background-color: #01458c;
  padding: 12px 24px;
  cursor: pointer;
  box-sizing: border-box;
}

div.contact > div.wrapper > div.right {
  float: right;
  width: 40%;
}

div.contact > div.wrapper > div.right > div.title {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

div.contact > div.wrapper > div.right > div.title > h3 {
  font-size: 18px;
  font-weight: 800;
  color: #01458c;
}

div.contact > div.wrapper > div.right > div.box {
  float: left;
  width: 100%;
}

div.contact > div.wrapper > div.right > div.box > div.top {
  float: left;
  width: 100%;
  padding: 25px;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  margin-bottom: 20px;
}

div.contact > div.wrapper > div.right > div.box > div.top > h4 {
  float: left;
  width: 100%;
  font-size: 18px;
  color: #01458c;
  font-weight: 800;
  margin-bottom: 10px;
}

div.contact > div.wrapper > div.right > div.box > div.top > p {
  float: left;
  width: 100%;
  font-size: 15px;
  color: #757575;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
}

div.contact > div.wrapper > div.right > div.box > div.top > a > i {
  color: #01458c;
}

div.contact > div.wrapper > div.right > div.box > div.top > a {
  float: left;
  width: 100%;
  font-size: 15px;
  color: #565656;
  font-weight: 300;
  margin-bottom: 15px;
}

div.contact
  > div.wrapper
  > div.right
  > div.box
  > div.top
  > a.instagram::before {
  background-image: url("../img/instagram.svg");
}

div.contact > div.wrapper > div.right > div.box > div.bottom {
  float: left;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  border-radius: 6px;
}

div.contact > div.wrapper > div.right > div.box > div.bottom > h4 {
  float: left;
  width: 100%;
  font-size: 18px;
  color: #01458c;
  font-weight: 800;
  margin-bottom: 10px;
}

div.contact > div.wrapper > div.right > div.box > div.bottom > p {
  float: left;
  width: 100%;
  font-size: 15px;
  color: #757575;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
}

div.contact > div.wrapper > div.right > div.box > div.bottom > a {
  float: left;
  width: 100%;
  font-size: 15px;
  color: #565656;
  font-weight: 300;
  margin-bottom: 10px;
}

div.contact > div.wrapper > div.right > div.box > div.bottom > a:before {
  content: "";
  float: left;
  width: 16.25px;
  height: 16.25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 8px;
}

div.contact > div.wrapper > div.right > div.box > div.bottom > a.phone::before {
  background-image: url("../img/contact_phone1.svg");
}
div.contact > div.wrapper > div.right > div.box > div.bottom > a.fax::before {
  background-image: url("../img/contact_fax1.svg");
}
div.contact > div.wrapper > div.right > div.box > div.bottom > a.mail::before {
  background-image: url("../img/contact_mail1.svg");
  height: 11.61px;
}

div.contact
  > div.wrapper
  > div.right
  > div.box
  > div.bottom
  > a.instagram::before {
  background-image: url("../img/instagram.svg");
}

div.g-recaptcha {
  float: left;
  overflow: hidden;
}

div.contact > div.map {
  float: left;
  width: 100%;
  height: 450px;
  margin-top: 120px;
}

section.banner {
  float: left;
  width: 100%;

  position: relative;
}

section.banner div.items {
  float: left;
  width: 100%;

  position: relative;
  z-index: 1;
}

section.banner div.item {
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
}

section.banner div.item:before {
  width: 100%;
  float: left;
  content: "";
  padding-top: 40%;
}

section.banner div.slider_buttons {
  position: absolute;
  z-index: 3;
  top: calc(50% - 27px);
  width: 100%;
  float: left;
  padding: 0 20px;
  box-sizing: border-box;
}

section.banner div.slider_buttons a.slider_prev {
  height: 40px;
  width: 20px;
  background-image: url("../img/slider_prev.svg");
  background-repeat: no-repeat;
  float: left;
  background-size: contain;
  cursor: pointer;
}

section.banner div.slider_buttons a.slider_next {
  height: 40px;
  width: 20px;
  background-image: url("../img/slider_next.svg");
  background-repeat: no-repeat;
  float: right;
  background-size: contain;
  cursor: pointer;
}

.services {
  float: left;
  width: 100%;
  padding: 80px 0px;
  box-sizing: border-box;
}

.services > .wrapper > .container {
  float: left;
  width: 100%;
}

.services > .wrapper > .container > h2 {
  font-size: 36px;
  font-weight: 800;
  color: #01458c;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

.services > .wrapper > .container > .box {
  float: left;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 4%;
}

.services > .wrapper > .container > .box:nth-child(3n) {
  margin-right: 0%;
}

.services > .wrapper > .container > .box > .images {
  float: left;
  width: 100%;
  height: 350px;
  object-position: center;
  object-fit: cover;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.services > .wrapper > .container > .box:hover > .images {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.services > .wrapper > .container > .box > .title {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.services > .wrapper > .container > .box > .title > h3 {
  font-size: 24px;
  font-weight: 700;
  color: #01458c;
}

.services > .wrapper > .container > .box > .text {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.services > .wrapper > .container > .box > .text > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565656;
}

.services > .wrapper > .container > .box > span {
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: #01458c;
  margin-top: 15px;
}

.services_detail {
  float: left;
  width: 100%;
  padding: 80px 0px;
  box-sizing: border-box;
}

.services_detail > .wrapper > .left {
  width: 40%;
  float: left;
}

.services_detail > .wrapper > .left > .images {
  float: left;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.services_detail > .wrapper > .right {
  float: right;
  width: 55%;
}

.services_detail > .wrapper > .right > h3 {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #01458c;
}

.services_detail > .wrapper > .right > p {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565656;
}

.services_detail > .wrapper > .right > ul,
.services_detail > .wrapper > .right > p > ul {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.services_detail > .wrapper > .right > ul > li,
.services_detail > .wrapper > .right > p > ul > li {
  float: left;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565656;
  margin-bottom: 10px;
}

.services_detail > .wrapper > .right > ul > li:before,
.services_detail > .wrapper > .right > p > ul > li:before {
  content: "•";
  float: left;
  font-weight: 700;
  margin-right: 10px;
}

.panel-box {
  float: left;
  width: 100%;
  padding: 80px 0px;
  box-sizing: border-box;
}

.panel-box > .wrapper > .top {
  float: left;
  width: 100%;
}

.panel-box > .wrapper > .top > .title {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.panel-box > .wrapper > .top > .title > h2 {
  font-size: 2.1rem;
  color: #021152;
  letter-spacing: 0.04rem;
  font-weight: 700;
  line-height: 1.24;
}

.panel-box > .wrapper > .top > .text {
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.panel-box > .wrapper > .top > .text > p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: #677180;
}

.panel-box > .wrapper > .bottom {
  float: left;
  width: 100%;
}

.panel-box > .wrapper > .bottom > .box {
  float: left;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 4%;
}

.panel-box > .wrapper > .bottom > .box:nth-child(3n) {
  margin-right: 0%;
}

.panel-box > .wrapper > .bottom > .box > .images {
  float: left;
  width: 100%;
  height: 350px;
  object-position: center;
  object-fit: cover;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.panel-box > .wrapper > .bottom > .box:hover > .images {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.panel-box > .wrapper > .bottom > .box > .title {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.panel-box > .wrapper > .bottom > .box > .title > h3 {
  font-size: 24px;
  font-weight: 700;
  color: #01458c;
}

.panel-box > .wrapper > .bottom > .box > .text {
  float: left;
  width: 100%;
  margin-top: 10px;
}

.panel-box > .wrapper > .bottom > .box > .text > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #565656;
}

.panel-box > .wrapper > .bottom > .box > span {
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: #01458c;
  margin-top: 15px;
}

.panel-box > .wrapper > .bottom > .row {
  float: left;
  width: 25%;
  padding: 30px;
  box-sizing: border-box;
  color: #fff;
}

.panel-box > .wrapper > .bottom > .row > .icon {
  float: left;
  width: 100%;
  height: 80px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.panel-box > .wrapper > .bottom > .row > h4 {
  float: left;
  width: 100%;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 35px 0px 15px 0;
}

.panel-box > .wrapper > .bottom > .row > p {
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
}

.panel-box > .wrapper > .bottom > .row-box {
  float: left;
  width: 33.333%;
  padding: 20px;
  box-sizing: border-box;
  color: #021152;
  background-color: #e8f5e9;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.panel-box > .wrapper > .bottom > .row-box > h4 {
  float: left;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #021152;
  margin: 25px 0px 10px 0;
  text-align: center;
}

.panel-box > .wrapper > .bottom > .row-box > p {
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: #021152;
  text-align: center;
  line-height: 28px;
}

div.hamburger {
  width: 30px;
  height: 30px;
  float: right;
  background-image: url("../img/hamburger.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: none;
}

.overclock {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: -100%;
  background-color: #01458c;
  overflow-x: hidden;
  transition: 0.3s;
  top: 73px;
  display: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  padding: 20px;
  box-sizing: border-box;
}

div.overclock-content {
  width: 100%;
  float: right;
}

div#mobileNav {
  width: 100%;
  float: right;
  overflow: scroll;
}

div#mobileNav.active {
  right: 0;
}

div.overclock-content > div.navigation {
  float: left;
  width: 100%;
}

div.overclock-content > div.navigation > ul {
  float: left;
  width: 100%;
}

div.overclock-content > div.navigation > ul > li {
  float: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px;
  box-sizing: border-box;
}

div.overclock-content > div.navigation > ul > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

div.overclock-content > div.navigation > ul > li > a {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}

div.overclock-content > div.social_media {
  float: left;
  width: 100%;
  margin-top: 40px;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div.overclock-content > div.social_media > div.left {
  float: left;
}

div.overclock-content > div.social_media > div.left > a {
  float: left;
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 15px;
}

div.overclock-content > div.social_media > div.left > a.fc {
  background-image: url(../images/facebook.svg);
}

div.overclock-content > div.social_media > div.left > a.ins {
  background-image: url(../images/instagram.svg);
}

div.overclock-content > div.social_media > div.left > a.tw {
  background-image: url(../images/twitter.svg);
}

div.overclock-content > div.social_media > div.left > a.in {
  background-image: url(../images/linkedin.svg);
}

div.overclock-content > div.social_media > div.right {
  float: right;
}

div.overclock-content > div.social_media > div.right > a {
  float: left;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}

div.overclock-content > div.social_media > div.right > a.active {
  font-weight: 600;
}

div.overclock-content > div.social_media > div.right > a:first-child::after {
  content: "/";
  float: right;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin: 0px 10px;
}

div.menus {
  height: 0;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-y: hidden;
  transition: 0.5s;
  display: none;
}

div.mobiles-content {
  width: 100%;
  float: left;
  display: none;
}

div.mobiles-content > ul {
  float: left;
  width: 100%;
  list-style-type: none;
}

div.mobiles-content > ul > li {
  float: left;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #dfdfdf;
}

div.mobiles-content > ul > li:last-child {
  border-bottom: 0;
}

div.mobiles-content > ul > li > a {
  float: left;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  color: #01458c;
  font-weight: 300;
  font-size: 17px;
}

div.mobiles-content > ul > li > a.active {
  font-weight: 800;
}

div.mobiles-content > ul > li > ul {
  float: left;
  width: 100%;
  padding-left: 25px;
  box-sizing: border-box;
}

div.mobiles-content > ul > li > ul > li {
  float: left;
  width: 100%;
  padding-bottom: 10px;
  box-sizing: border-box;
  list-style: none;
}

div.mobiles-content > ul > li > ul > li > a {
  font-size: 16px;
  font-weight: 300;
  color: #565656;
  display: flex;
  align-items: center;
}

div.mobiles-content > ul > li > ul > li > a:before {
  content: "";
  float: left;
  width: 6px;
  height: 6px;
  background-color: #01458c;
  border-radius: 100px;
  margin-right: 8px;
  margin-top: -4px;
}

div#mobiles {
  width: 100%;
  height: 0;
  float: left;
  overflow: hidden;
  margin-bottom: 40px;
}

div#mobiles.active {
  height: 250px;
  overflow: auto;
  border-bottom: 1px solid #ddd;
}

div.toogle_bar {
  display: none;
  margin-bottom: 15px;
  float: left;
  border: 2px solid #01458c;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #f9f9f9;
  justify-content: space-between;
  align-items: center;
}

div.toogle_bar h3:after {
  content: "";
  float: right;
  width: 18px;
  height: 18px;
  margin-left: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/plus.svg");
}

div.toogle_bar h3 {
  color: #01458c;
  font-size: 18px;
  font-weight: 800;
  float: left;
}

.pad {
  float: left;
  width: 100%;
  padding: 20px 0px;
  box-sizing: border-box;
  background-color: #021152;
}

.pad > div.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pad > div.wrapper > .left {
  float: left;
  margin-right: 12px;
}
.pad > div.wrapper > .left > p {
  font-size: 22px;
  color: #e8f5e9;
  font-weight: 900;
}

.pad > div.wrapper > .right {
  float: left;
}

.pad > div.wrapper > .right > a {
  float: left;
  padding: 6px 12px;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 18px;
  font-weight: 800;
  color: #021152;
  transition: 0.3s;
}

.pad > div.wrapper > .right > a:hover {
  background-color: #4dc247;
  color: #fff;
}

div.corporate > div.wrapper > div.right > .row {
  float: left;
  width: 100%;
  margin-top: 30px;
}

div.corporate > div.wrapper > div.right > .row > .box {
  float: left;
  width: 22%;
  margin-right: 4%;
  margin-bottom: 4%;
}

div.corporate > div.wrapper > div.right > .row > .box:nth-child(4n) {
  margin-right: 0%;
}

div.corporate > div.wrapper > div.right > .row > .box > .images {
  float: left;
  width: 100%;
  height: 350px;
  object-position: center;
  object-fit: cover;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

div.corporate > div.wrapper > div.right > .row > .box:hover > .images {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

div.corporate > div.wrapper > div.right > .row > .box > .title {
  float: left;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

div.corporate > div.wrapper > div.right > .row > .box > .title > h4 {
  font-size: 22px;
  font-weight: 600;
  color: #01458c;
}

div.info {
  float: left;
  width: 100%;
  margin-top: 80px;
}

.info > .wrapper > h3 {
  font-size: 2.1rem;
  color: #021152;
  letter-spacing: 0.04rem;
  font-weight: 700;
  line-height: 1.24;
  float: left;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.phone-items {
  float: left;
  width: 100%;
  padding: 30px 0px;
  box-sizing: border-box;
  background-color: #021152;
}

.phone-items > .wrapper > .item {
  float: left;
  width: 50%;
  text-align: center;
}

.phone-items > .wrapper > .item > h4 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

.phone-items > .wrapper > .item > a {
  font-size: 18px;
  color: #fff;
}

.phone-items > .wrapper > .item:first-child > a:last-child {
  margin-left: 15px;
}

@media screen and (max-width: 1250px) {
  div.wrapper {
    padding: 0px 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1100px) {
  header > div.bottom > div.wrapper > a.logo {
    width: 180px;
    height: 70px;
  }

  header > div.bottom > div.wrapper > ul > li > div.dropdown {
    top: 142px;
  }
}

@media screen and (max-width: 1010px) {
  header > div.top {
    display: none;
  }

  div#header_clear,
  div#header_clear.scroll {
    height: 74px;
    float: left;
    width: 100%;
  }

  header > div.bottom > div.wrapper > ul {
    display: none;
  }

  header > div.bottom > div.wrapper > a.logo,
  header.scroll > div.bottom > div.wrapper > a.logo {
    width: 140px;
    height: 54px;
  }

  header > div.bottom {
    padding: 10px 0px;
  }

  div.hamburger,
  div.overclock {
    display: block;
  }

  .services > .wrapper > .container > .box,
  .panel-box > .wrapper > .bottom > .box {
    float: left;
    width: 48%;
    margin-right: 4%;
  }

  .services > .wrapper > .container > .box:nth-child(3n),
  .panel-box > .wrapper > .bottom > .box:nth-child(3n) {
    margin-right: 4%;
  }

  .services > .wrapper > .container > .box:nth-child(2n),
  .panel-box > .wrapper > .bottom > .box:nth-child(2n) {
    margin-right: 0%;
  }
}

@media screen and (max-width: 950px) {
  div.corporate > div.wrapper > div.right > .row > .box {
    float: left;
    width: 48%;
    margin-right: 4%;
  }

  div.corporate > div.wrapper > div.right > .row > .box:nth-child(4n) {
    margin-right: 4%;
  }

  div.corporate > div.wrapper > div.right > .row > .box:nth-child(2n) {
    margin-right: 0%;
  }
}

@media screen and (max-width: 850px) {
  .panel-box > .wrapper > .bottom > .row-box {
    width: 100%;
    margin-bottom: 10px;
  }

  .pt-0 {
    padding-top: 0 !important;
  }

  .services_detail > .wrapper > .left {
    width: 100%;
    margin-bottom: 20px;
  }

  .services_detail > .wrapper > .right {
    float: left;
    width: 100%;
  }

  .phone-items > .wrapper > .item > h4 {
    font-size: 20px;
    width: 100%;
    float: left;
    text-align: left;
  }

  .phone-items > .wrapper > .item > a {
    float: left;
    width: 100%;
    text-align: left;
  }

  .phone-items > .wrapper > .item:first-child > a:last-child {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media screen and (max-width: 800px) {
  div.corporate > div.wrapper > div.left {
    width: 100%;
  }

  div.corporate > div.wrapper > div.left > div.title {
    display: none;
  }

  div.corporate > div.wrapper > div.left > ul {
    display: none;
  }

  div.corporate > div.wrapper > div.right {
    float: left;
    width: 100%;
  }

  div.toogle_bar {
    display: flex;
  }

  div.mobiles-content {
    display: block;
  }

  div.menus {
    display: block;
  }
}

@media screen and (max-width: 780px) {
  div.g-recaptcha {
    width: 50%;
  }

  div.breadcrump {
    padding: 50px 0px;
  }

  div.breadcrump > div.wrapper {
    flex-wrap: wrap;
  }

  div.breadcrump > div.wrapper > div.left {
    width: 100%;
    float: left;
  }

  div.breadcrump > div.wrapper > div.right {
    float: left;
    width: 100%;
    margin-top: 30px;
  }

  div.breadcrump > div.wrapper > div.left > h2 {
    font-size: 38px;
  }
}

@media screen and (max-width: 767px) {
  .panel-box > .wrapper > .bottom > .row {
    width: 50%;
  }
}

@media screen and (max-width: 657px) {
  .pb-2 {
    padding-bottom: 20px !important;
  }
  .panel-box > .wrapper > .bottom > .row {
    width: 100%;
  }

  div.contact > div.wrapper > div.left {
    float: left;
    width: 100%;
  }

  div.contact > div.wrapper > div.right {
    float: left;
    width: 100%;
    margin-top: 50px;
  }

  div.contact > div.map {
    margin-top: 60px;
    height: 350px;
  }

  .services > .wrapper > .container > .box,
  .panel-box > .wrapper > .bottom > .box {
    float: left;
    width: 100%;
    margin-right: 0%;
    margin-bottom: 8%;
  }
}

@media screen and (max-width: 600px) {
  div.corporate > div.wrapper > div.right > div.text > div.brands > div.item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }

  div.corporate
    > div.wrapper
    > div.right
    > div.text
    > div.brands
    > div.item:nth-child(2n) {
    margin-right: 0;
  }

  section.banner div.item:before {
    padding-top: 100%;
  }

  footer > .wrapper > .top-items > .item{
    width: 100% !important;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  div.corporate > div.wrapper > div.right > .row > .box {
    float: left;
    width: 100%;
    margin-bottom: 8%;
  }

  div.corporate > div.wrapper > div.right > .row > .box:last-child {
    margin-bottom: 0;
  }

  .phone-items > .wrapper > .item {
    float: left;
    width: 100%;
  }

  .phone-items > .wrapper > .item > h4,
  .phone-items > .wrapper > .item > a {
    text-align: center;
  }

  .phone-items > .wrapper > .item:first-child {
    margin-bottom: 40px;
  }

  .phone-items > .wrapper > .item > a {
    font-size: 16px;
  }

  .phone-items > .wrapper > .item:first-child > a:last-child {
    margin-top: 15px;
  }
}

@media screen and (max-width: 467px) {
  .pad > div.wrapper {
    flex-direction: column;
  }
  .pad > div.wrapper > .left {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 360px) {
  div.corporate > div.wrapper > div.right > div.text > div.brands > div.item {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 10%;
  }

  div.corporate
    > div.wrapper
    > div.right
    > div.text
    > div.brands
    > div.item:last-child {
    margin-bottom: 0;
  }

  .services > .wrapper > .container > .box > .images,
  .panel-box > .wrapper > .bottom > .box > .images {
    height: 300px;
  }
}

footer {
  float: left;
  width: 100%;
  background-color: #021152;
  padding: 80px 0px 30px 0px;
  box-sizing: border-box;
}

footer > .wrapper > .top-items {
  float: left;
  width: 100%;
  padding-bottom: 30px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

footer > .wrapper > .top-items > .item {
  width: 30%;
  float: left;
}

footer > .wrapper > .top-items > .item:first-child {
  width: 40%;
}

footer > .wrapper > .top-items > .item >.logo{
  float: left;
  width: 100%;
  height: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../img/footer-logo.svg');
}

footer > .wrapper > .top-items > .item > h4 {
  float: left;
  width: 100%;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

footer > .wrapper > .top-items > .item > p {
  font-size: 15px;
  color: #fff;
  float: left;
  width: 70%;
  margin-top: 20px;
  line-height: 30px;
}

footer > .wrapper > .top-items > .item > ul {
  float: left;
  width: 100%;
}

footer > .wrapper > .top-items > .item > ul > li {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

footer > .wrapper > .top-items > .item > ul > li > a {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 15px;
}

footer > .wrapper > .top-items > .item > .footer-contact {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

footer > .wrapper > .top-items > .item > .footer-contact > a {
  float: left;
  width: 100%;
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

footer > .wrapper > .top-items > .item > .social-media {
  float: left;
  width: 100%;
}

footer > .wrapper > .top-items > .item > .social-media > a > i {
  color: #fff;
  font-size: 25px;
  margin-right: 6px;
}

footer > .wrapper > .bottom-items {
  float: left;
  width: 100%;
  padding-top: 30px;
  box-sizing: border-box;
  text-align: center;
}

footer > .wrapper > .bottom-items > p {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
}

.ozdemirajans {
  float: left;
  width: 100%;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/ozdemirajans.svg");
}

#whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  justify-content: center;
  display: flex;
  align-items: center;
}
#whatsapp-button i {
  color: #FFF;
}

#phone-button {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
  background-color: #00bfff;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  justify-content: center;
  display: flex;
  align-items: center;
}
#phone-button i {
  color: #FFF;
  font-size: 25px !important;
}