@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  font-family: "Jost", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none !important;
}

.page-top-btn {
  cursor: pointer;
  color: #242424;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 0;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(0.6);
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  transition: 300ms all;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.page-top-btn:hover {
  background-color: #ff4228;
  color: #fff;
}
.page-top-btn::before {
  font-size: 16px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  content: "\f077";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-top-btn.show {
  opacity: 1;
  transform: none;
  pointer-events: visible;
}

.red-btn {
  border: none;
  outline: none;
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  border-radius: 35px;
  transition: 300ms all;
  background-color: rgb(237, 61, 37);
  box-shadow: 1px 2px 13px rgba(237, 61, 37, 0.7);
}
.red-btn:hover {
  background-color: rgb(214, 55, 33);
  color: #fff !important;
}

.before-btn {
  display: inline-block;
  color: #04426f;
  font-size: 20px;
  padding: 10px 30px;
  border: 1px solid #fff;
  position: relative;
  transition: 300ms all;
}
.before-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: 300ms all;
}
.before-btn:hover {
  color: #000 !important;
}
.before-btn:hover::before {
  height: 100%;
  z-index: -1;
}

.mobile-menu-open {
  font-size: 20px;
  color: #04426f;
  display: none;
}

#header .header-top {
  background-color: #04426f;
  color: #fff;
}
#header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
}
#header .header-top .container a {
  color: rgba(255, 255, 255, 0.8);
  transition: 200ms all;
}
#header .header-top .container a:hover {
  color: rgba(255, 255, 255, 0.6);
}
#header .header-bottom {
  transition: 300ms all;
  background-color: #fff;
  border-bottom: 1px solid transparent;
}
#header .header-bottom.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  border-color: #dedede;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  z-index: 9999;
}
#header .header-bottom.fixed .container {
  height: 60px !important;
}
#header .header-bottom.fixed .sub-menu ul {
  margin-top: 18px !important;
}
#header .header-bottom.hidden {
  top: -100%;
}
#header .header-bottom .container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 300ms all;
}
#header .header-bottom .container .logo {
  margin-right: 25px;
}
#header .header-bottom .container .menu {
  height: 100%;
}
#header .header-bottom .container .menu nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#header .header-bottom .container .menu nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#header .header-bottom .container .menu nav ul > li {
  position: relative;
  padding-bottom: 5px;
  margin: 5px 10px;
}
#header .header-bottom .container .menu nav ul > li > a {
  height: 100%;
  width: 100%;
  display: inline-block;
  color: #04426f;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}
#header .header-bottom .container .menu nav ul > li::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 300ms all;
}
#header .header-bottom .container .menu nav ul > li.active::after,
#header .header-bottom .container .menu nav ul > li:hover::after {
  width: 100%;
  background-color: #ff4228;
}
#header .header-bottom .container .menu nav ul li.drop-down {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  position: relative;
  padding-right: 15px;
}
#header .header-bottom .container .menu nav ul li.drop-down::before {
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  color: #cfcece;
  transform: translate(0, -50%);
}
#header .header-bottom .container .menu nav ul li.drop-down .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 150;
  top: calc(100% + 10px);
  transition: 300ms all;
}
#header .header-bottom .container .menu nav ul li.drop-down .sub-menu ul {
  padding: 5px 0;
  background-color: #fff;
  margin-top: 5px;
  left: 0;
  width: 240px;
  flex-direction: column;
  align-items: start;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}
#header .header-bottom .container .menu nav ul li.drop-down .sub-menu ul li a {
  padding: 5px 15px 5px 15px;
  display: block;
  color: #5e5e5e;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
#header .header-bottom .container .menu nav ul li.drop-down .sub-menu ul li::after {
  width: 0 !important;
}
#header .header-bottom .container .menu nav ul li.drop-down:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.logo {
  display: inline-block;
  width: 225px;
  height: 88px;
  overflow: hidden;
}
.logo img {
  width: 100%;
 
  object-fit: contain;
  object-position: center;
}

.social-media-icons ul {
  display: flex;
  align-items: center;
}
.social-media-icons ul li a {
  padding: 7px;
  font-size: 14px;
  color: #04426f;
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 300ms all;
}
#mobile-menu .close-mobile-menu {
  width: 30%;
  height: 100%;
}
#mobile-menu .menu-content {
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -100%;
  background-color: #fff;
  transition: 300ms all;
}
#mobile-menu .search-input {
  position: relative;
}
#mobile-menu .search-input input {
  border-radius: 0 !important;
  width: 100%;
  padding: 15px;
  height: 60px;
  color: #5e5e5e;
  font-weight: bold;
  padding-right: 50px;
}
#mobile-menu .search-input input::placeholder {
  color: #5e5e5e;
  font-weight: bold;
}
#mobile-menu .search-input button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  border: none;
  background-color: transparent;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04426f;
}
#mobile-menu .mobile-menu-items li {
  width: 100% !important;
}
#mobile-menu .mobile-menu-items li a {
  padding: 13px 20px;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #dedede;
  color: #04426f;
  font-weight: 600;
  position: relative;
}
#mobile-menu .mobile-menu-items li.drop-down > a::before {
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  transition: 300ms all;
  color: #04426f;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-menu .mobile-menu-items li.drop-down .sub-menu {
  height: 0;
  overflow: hidden;
  transition: 300ms all;
}
#mobile-menu .mobile-menu-items li.drop-down .sub-menu ul li a {
  border-bottom: none !important;
  color: #5e5e5e !important;
  padding: 7px 20px !important;
}
#mobile-menu .mobile-menu-items li.active a::before {
  transform: rotate(90deg);
}

.page-title {
  min-height: 150px;
  width: 100%;
  padding: 30px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-title .title {
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  line-height: 48px;
}
.page-title .breadcrumbs {
  display: flex;
  align-items: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.page-title .breadcrumbs a {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-right: 8px;
  transition: 200ms all;
}
.page-title .breadcrumbs a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.page-title .breadcrumbs span {
  display: inline-block;
  margin-left: 8px;
}

#references {
  padding: 70px 0;
}

.reference-item {
  margin-bottom: 20px;
}
.reference-item .image {
  width: 100%;
  height: 250px;
  border-radius: 5px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.reference-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.reference-item h2 {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  color: #5e5e5e;
  text-align: center;
  margin-top: 7px;
  text-transform: uppercase;
}

#faliyetlerimiz {
  padding: 30px 0;
}
#faliyetlerimiz .content-post {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.faliyetlerimiz-item {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}
.faliyetlerimiz-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.faliyetlerimiz-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  
}

.gallery-item {
  width: 100%;
  
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  margin-top: 30px;
}
.gallery-item img {
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center;
}

#about-us {
  padding: 5px 0;
  background-color: #f5f5f5;
}
#about-us .content-post {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #5e5e5e;
}
#about-us .content-post p {
  margin-bottom: 15px;
}
#about-us .about-us-image {
  width: 100%;
  max-width: 600px;
  height: 500px;
  overflow: hidden;
}
#about-us .about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#about-us .about-us-logo {
  width: 100%;
  max-width: 550px;
  height: 95px;
  overflow: hidden;
}
#about-us .about-us-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#contact-section {
  padding-bottom: 70px;
  background-color: #f1f3f4;
}
#contact-section .map {
  width: 100%;
  height: 170px;
  overflow: hidden;
}
#contact-section .white-box {
  padding: 30px;
  margin: 30px 0;
  height: calc(100% - 60px);
  background-color: #fff;
  border-radius: 5px 0px 5px 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#contact-section .white-box h1 {
  line-height: 53px;
  color: #04426f;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}
#contact-section .blue-box {
  background-color: #04426f;
  padding: 60px 30px;
  height: 100%;
  border-radius: 5px;
}
#contact-section .blue-box h1 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}
#contact-section .blue-box h1 + p {
  margin-bottom: 20px;
}
#contact-section .blue-box strong {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  display: block;
  margin-bottom: 15px;
}
#contact-section .blue-box p {
  margin-bottom: 4px;
}
#contact-section .blue-box p,
#contact-section .blue-box a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
}
#contact-section .blue-box a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: 300ms all;
}
#contact-section .blue-box a i {
  margin-right: 7px;
  color: #ff4228;
}
#contact-section .blue-box a:hover {
  color: rgba(255, 255, 255, 0.6);
}
#contact-section .blue-box b {
  font-weight: 700;
}
input {
  outline: none;
  width: 100%;
  height: 42px;
  background-color: #fff;
  box-shadow: none;
  color: #777;
  vertical-align: middle;
  font-size: 14px;
  transition: border-color 0.5s ease;
  border-radius: 35px;
  padding: 0 15px;
  border: 1px solid rgba(119, 119, 119, 0.2);
}

textarea {
  outline: none;
  width: 100%;
  background-color: #fff;
  box-shadow: none;
  color: #777;
  vertical-align: middle;
  font-size: 14px;
  transition: border-color 0.5s ease;
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(119, 119, 119, 0.2);
}

#main-slider {
  max-height: 600px !important;
  height: 600px !important;
  background-color: #04426f;
  overflow: hidden;
}
#main-slider li {
  height: 600px !important;
}
#main-slider .uk-slider,
#main-slider .uk-slider-items,
#main-slider .uk-slider-items li {
  width: 100% !important;
  height: 100% !important;
  height: 600px !important;
  text-align: center !important;
}
#main-slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}
#main-slider h2 {
  font-size: 65px;
  font-weight: 500;
  color: #fff;
  line-height: 85px;
}
#main-slider .uk-slidenav-previous svg,
#main-slider .uk-slidenav-next svg {
  width: 40px !important;
  height: 40px !important;
}

#why-us {
  background-color: #f5f5f5;
  padding: 40px 0;
}
#why-us .hover-img {
  width: 100%;
  height: 460px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 7px;
  display: inline-block;
  position: relative;
}
#why-us .hover-img .overlay {
  position: absolute;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  top: 30px;
  left: 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
#why-us .hover-img .overlay h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
  color: #ff4228;
}
#why-us .hover-img .overlay span {
  display: block;
  color: #686868;
  font-size: 16px;
  line-height: 26px;
}
#why-us .hover-img .overlay strong {
  font-size: 106px;
  background-repeat: repeat;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}
#why-us .hover-img .image {
  width: 100%;
  height: 100%;
}
#why-us .hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
}
#why-us .hover-img:hover img {
  transform: scale(1.05);
}
#why-us .small-hover-img {
  height: 460px;
  width: calc(35% - 15px) !important;
}
#why-us .content {
  padding-top: 40px;
}
#why-us .content .sub-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 53px;
  color: #04426f;
  margin-bottom: 15px;
}
#why-us .content .title {
  font-weight: 600;
  line-height: 53px;
  font-size: 38px;
  margin-bottom: 20px;
  color: #f5f5f5;
  text-shadow: -1px -1px 0 #04426F, 1px -1px 0 #ff4228, -1px 1px 0 #04426F, 1px 1px 0 #04426F;
}
#why-us .content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #5e5e5e;
}
#why-us .image-section {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 90px;
}
#why-us .image-section .content {
  position: relative;
  z-index: 2;
  height: calc(100% - 80px);
  margin: 40px 0;
  padding: 40px;
  border-radius: 5px;
  background-color: #F28D13;
  width: 55%;
}
#why-us .image-section .content .icon {
  margin-bottom: 15px;
  width: 60px;
  height: 40px;
  overflow: hidden;
}
#why-us .image-section .content .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#why-us .image-section .content .sub-title {
  color: #fff !important;
}
#why-us .image-section .content p {
  font-weight: 400;
  line-height: 26px;
  font-size: 16px;
  color: #fff !important;
}
#why-us .image-section .image {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  border-radius: 5px;
  height: 100%;
  overflow: hidden;
}
#why-us .image-section .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.box-item {
  position: relative;
  padding-top: 7px;
  padding-left: 15px;
}
.box-item::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ff4228;
  top: 0;
  left: 0;
}
.box-item strong {
  display: block;
  color: #04426f;
  font-size: 38px;
  font-weight: 600;
  line-height: 53px;
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.box-item span {
  color: #5e5e5e;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

#projects {
  background-image: url(/assets/img/project-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
}
#projects .title {
  font-size: 38px;
  color: #fff;
  line-height: 53px;
  font-weight: 600;
  margin-bottom: 10px;
}
#projects p {
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.project-item {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  margin-top: 30px;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 300ms all;
}
.project-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 300ms all;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}
.project-item .overlay .category {
  display: inline-block;
  padding: 4px;
  border-radius: 5px;
  background-color: #ff4228;
  font-size: 14px;
  color: #fff;
}
.project-item .overlay .title {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 16px !important;
  color: #fff !important;
  line-height: 1.3 !important;
  transition: 300ms all;
  margin-bottom: 0 !important;
}
.project-item:hover img {
  transform: scale(1.1);
}
.project-item:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.project-item:hover .overlay .title {
  margin-bottom: 15px !important;
}

.small-project-item {
  height: 350px;
}

.large-project-item {
  height: 730px;
}

#about-section {
  background-color: #f5f5f5;
  padding: 10px 0;
}
#about-section .small-image {
  width: 200px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
}
#about-section .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#about-section .container {
  position: relative;
}
#about-section .container .texts {
  position: absolute;
  top: 0;
  right: 0;
  text-align: end;
}
#about-section .container .texts .title {
  text-transform: uppercase;
  font-size: 115px;
  line-height: 92px;
  color: #04426f;
  font-weight: 600;
}
#about-section .container .texts .sub-title {
  font-weight: 600;
  line-height: 92px;
  font-size: 115px;
  color: #f5f5f5;
  text-shadow: -1px -1px 0 #ff4228, 1px -1px 0 #ff4228, -1px 1px 0 #ff4228, 1px 1px 0 #ff4228;
}
#about-section .container .left-title {
  color: #04426f;
  font-size: 38px;
  font-weight: 700;
  line-height: 53px;
  margin-bottom: 20px;
  margin-top: 230px;
  display: block;
}
#about-section .container p {
  font-size: 16px;
  line-height: 26px;
  color: #5e5e5e;
  font-weight: 400;
}
#about-section .container .image {
  width: 100%;
  height: 488px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  margin-top: 50px;
  z-index: 2;
}
#about-section .container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#last-projects .project-box {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#last-projects .project-box::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
#last-projects .project-box .content {
  position: relative;
  width: 100%;
  margin-left: auto;
  color: #fff;
  padding: 80px 60px;
}
#last-projects .project-box .content .title {
  font-size: 38px;
  line-height: 53px;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 25px;
}
#last-projects .project-box .content p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
#last-projects .red-box::before {
  background-color: rgba(255, 66, 40, 0.85);
}
#last-projects .blue-box .content {
  margin-left: 0 !important;
  margin-right: auto !important;
}
#last-projects .blue-box::before {
  background-color: rgba(4, 66, 111, 0.75);
}
#last-projects .box-item {
  width: 50%;
  margin-bottom: 30px;
}
#last-projects .box-item strong {
  color: #fff !important;
  margin-bottom: 0px !important;
}
#last-projects .box-item span {
  color: rgba(255, 255, 255, 0.6) !important;
}

#footer .footer-top {
  background-color: #04426f;
  padding: 40px 0;
}
#footer .footer-top .logo {
  width: 300px !important;
  height: 53px !important;
}
#footer .footer-top .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#footer .footer-menu .title {
  font-weight: 600;
  color: #04426f;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;
}
#footer .footer-menu ul li {
  margin-bottom: 7px;
  color: #5e5e5e;
  font-size: 16px;
  line-height: 26px;
}
#footer .footer-menu ul li a {
  color: #5e5e5e;
  font-size: 16px;
  line-height: 26px;
}
#footer .footer-menu ul li a i {
  color: #ff4228;
}
#footer .footer-menu ul li i {
  color: #ff4228;
}
#footer .footer-bottom {
  color: #5e5e5e;
  border-top: 1px solid #dedede;
  margin-top: 20px;
  padding: 20px 0;
}
#footer .footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .footer-bottom .container a {
  color: #ff4228;
  transition: 300ms all;
}
#footer .footer-bottom .container a:hover {
  color: #04426f;
}

.footer-social-media-icons ul {
  display: flex;
  align-items: center;
}
.footer-social-media-icons ul li {
  margin-left: 7px;
}
.footer-social-media-icons ul li a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: 300ms all;
}
.footer-social-media-icons ul li:nth-child(1) a:hover {
  background-color: #f89a1e;
  border-color: #f89a1e;
}
.footer-social-media-icons ul li:nth-child(2) a:hover {
  background-color: #3b5998;
  border-color: #3b5998;
}
.footer-social-media-icons ul li:nth-child(3) a:hover {
  background-color: #bd081c;
  border-color: #bd081c;
}
.footer-social-media-icons ul li:nth-child(4) a:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

@media only screen and (max-width: 998px) {
  #last-projects .content {
    padding: 20px !important;
  }
  #last-projects .content .title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }
  #about-section .texts .title,
  #about-section .texts .sub-title {
    font-size: 60px !important;
    line-height: 1.3 !important;
  }
  #about-section .left-title {
    margin-top: 50px !important;
  }

  #contact-section .col-lg-4 {
    padding-left: 15px !important;
  }
  #contact-section .col-lg-8 {
    padding-right: 15px !important;
  }
  .about-us-image {
    margin-bottom: 30px;
  }
  .mobile-menu-open {
    font-size: 20px;
    display: block;
  }
  body {
    padding-top: 60px;
  }
  .header-top {
    display: none;
  }
  .header-bottom {
    top: 0;
    left: 0;
    position: fixed !important;
    width: 100%;
    border-color: #dedede;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  }
  .header-bottom .container {
    height: 60px !important;
  }
  .header-bottom .menu {
    display: none;
  }
  .header-bottom .social-media-icons {
    display: none;
  }
  #footer .footer-menu {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 868px) {
  #why-us .image-section {
    position: static !important;
    flex-direction: column !important;
  }
  #why-us .content {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  #why-us .image {
    position: static !important;
    width: 100% !important;
  }
  .page-title .title {
    font-size: 26px !important;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 568px) {
  #why-us .hover-img {
    width: calc(100% - 15px) !important;
  }
  #footer .footer-bottom .container {
    flex-direction: column !important;
  }
  #last-projects .box-item {
    align-items: center !important;
    width: 100% !important;
  }
  #about-section .texts {
    position: static !important;
  }
  #about-section .texts .title,
  #about-section .texts .sub-title {
    font-size: 40px !important;
  }
  #about-section .small-image {
    width: 100% !important;
    height: 150px !important;
    margin-top: 10px;
  }
  #about-section .about-us-image {
    height: auto !important;
  }
  .page-title .breadcrumbs {
    flex-direction: column;
    align-items: center;
  }
  #footer .footer-top .container {
    justify-content: center;
  }
  #footer .footer-top .container .logo {
    margin-bottom: 20px;
  }
}

@media (max-width:768px) {
.logo img {
    width: 100%;
    height: 100%;
    width: 165px !important;
    padding-top: 8px !important;
}
#main-slider img {
    width: 100% !important;
    height: auto !important;
    opacity: 0.8;
}
#main-slider li {
    height: 300px !important;
}
.uk-position-center-left,
.uk-position-center-right{
    margin-top: -90px !important;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 165px !important;
    padding-top: 8px !important;
}
  #header .header-bottom {
    transition: 300ms all;
    background-color: #fff;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    padding-top: 5px;

}
  .mobile-menu-open {
    font-size: 30px;
    display: block;
}
  header{
    margin-top:15px;
  }
}

