@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
html, body, * {
  font-family: "Open Sans", sans-serif;
}

html {
  font-size: 15px;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 13px;
  }
}
a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  padding-top: 5.8rem;
}

header {
  /*padding:size(25) 0;*/
  position: fixed;
  z-index: 110;
  background: white;
  width: 100%;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
}
header.hide-element {
  transform: translateY(-100%);
}
header .site-logo {
  display: block;
  margin-left: 10rem;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .site-logo:hover {
  transform: rotate(-2deg) scale(1.2);
}
header .site-logo img {
  display: block;
  width: 100%;
  max-width: 10.9333333333rem;
}
header .social-media-links {
  margin-left: 10rem;
}
header .social-media-links a {
  display: inline-block;
  font-size: 1.2666666667rem;
  color: #8b8a8f;
  margin-right: 1.3333333333rem;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
header .social-media-links a:hover {
  transform: scale(1.3);
}
header .header-links a {
  display: inline-block;
  color: #323030;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 2.3333333333rem;
}
header .lang-button {
  max-width: 2rem;
  display: inline-block;
  margin-top: 0.6666666667rem;
  border-radius: 30px;
  overflow: hidden;
  font-weight: 700;
  color: #414040;
}
header .lang-button img {
  display: block;
  width: 100%;
}
header .offer-button {
  display: flex;
  align-items: center;
}
header .offer-button img {
  width: 1.6rem;
  height: 1.6rem;
}
header .offer-button span {
  color: #3d7eb8;
  font-size: 1.2rem;
  margin-left: 0.6666666667rem;
}
header .menu-col {
  position: relative;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}
header .menu-col:before {
  content: "";
  display: block;
  width: 1.6666666667rem;
  height: 1.6666666667rem;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: -1.6666666667rem;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background-image: url(../img/radius.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
}
header .menu-col:hover, header .menu-col.active {
  background-color: #215686;
}
header .menu-col:hover .menu-button, header .menu-col.active .menu-button {
  color: #fff;
}
header .menu-col:hover:before, header .menu-col.active:before {
  opacity: 1;
}
header .menu-button {
  font-size: 1.6rem;
  color: #3d7eb8;
  width: 5.4666666667rem;
  height: 5.8rem;
  display: flex;
  align-items: center;
  padding-left: 0.6666666667rem;
  justify-content: center;
}
@media screen and (max-width: 1300px) {
  header .social-media-col, header .header-links-col {
    display: none;
  }
  header .site-logo-col {
    margin-right: auto;
  }
  header .site-logo-col .site-logo {
    margin-left: 0.6666666667rem;
  }
  header .offer-button img {
    display: none;
  }
  header .menu-button {
    width: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  header .site-logo img {
    height: 1.6666666667rem;
  }
}

nav {
  width: 100%;
  max-width: 32rem;
  background-color: #4286c3;
  right: 0;
  border-bottom-left-radius: 15px;
  background-image: url(../img/amblem.svg);
  background-size: 65%;
  background-position: bottom left;
  background-repeat: no-repeat;
  transform: translateX(100%);
  opacity: 0;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
  position: fixed;
  z-index: 110;
  width: 100%;
  top: 5.8rem;
}
nav.hide-element {
  transform: translateY(-100%);
}
nav.active {
  transform: translateX(0);
  opacity: 1;
}
nav .nav-header {
  padding: 1.2rem 2.2rem;
  color: #fff;
  background-color: #215686;
}
nav .nav-header .close-nav-button span {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 1rem;
}
nav .nav-header .home-icon a {
  color: #fff;
  transform: scale(1);
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  display: block;
}
nav .nav-header .home-icon a:hover {
  transform: scale(1.3);
}
nav .nav-list a {
  padding: 1.2rem 2.2rem;
  font-size: 1.2rem;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  text-decoration: none;
  border-top: 1px solid #6a9ac6;
  border-bottom: 1px solid #215686;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
nav .nav-list a span {
  margin-right: 1rem;
}
nav .nav-list a:hover {
  padding-right: 3rem;
}
nav .nav-footer {
  border-top: 1px solid #6a9ac6;
  padding: 1.6666666667rem 0;
  text-align: center;
}
nav .nav-footer a {
  color: #fff;
  font-size: 1.2rem;
}
nav .nav-footer .social-media-links {
  padding-top: 1rem;
}
nav .nav-footer .social-media-links a {
  display: inline-block;
  margin: 0 0.6666666667rem;
}

.overlay {
  position: fixed;
  opacity: 0;
  background-color: #202020;
  z-index: 50;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: hidden;
}
.overlay.active {
  opacity: 0.7;
  visibility: visible;
}

.homepage-slider-section {
  position: relative;
}
.homepage-slider-section picture img {
  display: block;
  width: 100%;
}

.homepage-slider-pagination-wrapper {
  position: relative;
  bottom: 30px;
  left: 10px;
}
.homepage-slider-pagination-wrapper .swiper-pagination {
  bottom: auto;
  top: auto;
  left: 0;
  right: auto;
  text-align: left;
}
.homepage-slider-pagination-wrapper .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  width: 1.3333333333rem;
  height: 0.3333333333rem;
  border-radius: 20px;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homepage-slider-pagination-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 3.6666666667rem;
}

.homepage-section-1 {
  background-color: #0b5f83;
  overflow: hidden;
  /*  background-image: url(../img/bg-clouds.jpg);*/
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.homepage-section-1 .upper-bar {
  background-color: #3d7eb8;
  min-height: 100px;
  display: flex;
  align-items: center;
}
.homepage-section-1 .upper-bar .text {
  color: #fff;
  font-size: 1.8666666667rem;
  font-weight: 600;
}
.homepage-section-1 .section-image img {
  display: none;
  width: 100%;
}
.homepage-section-1 .description {
  margin-bottom: 5.3333333333rem;
  line-height: 1.8666666667rem;
  color: #fff;
  padding-top: 4rem;
}
.homepage-section-1 .white-box-row {
  margin-left: -1.3333333333rem;
  margin-right: -1.3333333333rem;
}
.homepage-section-1 .white-box-row > * {
  padding-left: 1.3333333333rem;
  padding-right: 1.3333333333rem;
}
.homepage-section-1 .white-box-row .white-box {
  margin-bottom: 3.7333333333rem;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 0;
  position: relative;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homepage-section-1 .white-box-row .white-box .icon {
  margin-bottom: 0.6666666667rem;
}
.homepage-section-1 .white-box-row .white-box .icon img {
  width: 3.3333333333rem;
  height: 3.3333333333rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.homepage-section-1 .white-box-row .white-box .text {
  font-weight: 600;
  font-size: 0.8666666667rem;
  color: #3d7eb8;
}
.homepage-section-1 .white-box-row .white-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #fff;
  transform: translate(10px, 10px);
}
.homepage-section-1 .white-box-row .white-box:hover {
  transform: translateY(-0.6666666667rem);
}
.homepage-section-1 .buttons {
  margin-bottom: 2.8rem;
}
.homepage-section-1 .buttons a {
  display: inline-flex;
  color: #323030;
  align-items: center;
  background-color: #fff;
  text-decoration: none;
  padding: 1.3333333333rem;
  font-size: 1.0666666667rem;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homepage-section-1 .buttons a i {
  margin-left: 1rem;
  color: #3d7eb8;
}
.homepage-section-1 .buttons a:hover {
  background-color: #e6e6e6;
}
.homepage-section-1 .sub-content {
  position: relative;
  overflow: hidden;
}
.homepage-section-1 .sub-content > .container {
  position: relative;
}
.homepage-section-1 .sub-content .background-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}

.homepage-section-2 {
  margin-bottom: 100px;
  overflow: hidden;
}
.homepage-section-2 .heading {
  font-size: 2rem;
  font-weight: 700;
  transform: translateY(5rem);
}
.homepage-section-2 .project-row {
  margin-left: -2.6666666667rem;
  margin-right: -2.6666666667rem;
}
.homepage-section-2 .project-row > * {
  padding-left: 2.6666666667rem;
  padding-right: 2.6666666667rem;
}
.homepage-section-2 .project-col:nth-child(odd) {
  transform: translateY(8.4666666667rem);
}
.homepage-section-2 .project-col .item {
  overflow: hidden;
  margin-bottom: 5.3333333333rem;
}
.homepage-section-2 .project-col .item img {
  display: block;
  width: 100%;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homepage-section-2 .project-col .item img:hover {
  transform: scale(1.1) rotate(5deg);
}
.homepage-section-2 .buttons {
  display: flex;
  transform: translateY(-1.2666666667rem);
}
.homepage-section-2 .buttons a {
  margin-left: auto;
  display: inline-flex;
  color: #323030;
  background-color: #fff;
  text-decoration: none;
  padding: 1.3333333333rem;
  font-size: 1.0666666667rem;
  border: 1px solid #3d7eb8;
  align-items: center;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homepage-section-2 .buttons a i {
  margin-left: 1rem;
  color: #3d7eb8;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homepage-section-2 .buttons a:hover {
  background-color: #3d7eb8;
  color: #fff;
}
.homepage-section-2 .buttons a:hover i {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .homepage-section-2 {
    padding-top: 2.6666666667rem;
  }
  .homepage-section-2 .heading {
    transform: translateY(0);
    margin-bottom: 2.6666666667rem;
  }
  .homepage-section-2 .project-col:nth-child(odd) {
    transform: translateY(0rem);
  }
}

footer {
  background-color: #414040;
  position: relative;
  padding-bottom: 6.6666666667rem;
  overflow: hidden;
}
footer::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  height: 40%;
  background-color: #323030;
  z-index: 1;
}
footer .upper-footer {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
footer .upper-footer > .row {
  margin-left: -2.6666666667rem;
  margin-right: -2.6666666667rem;
}
footer .upper-footer > .row > * {
  padding-left: 2.6666666667rem;
  padding-right: 2.6666666667rem;
}
footer .upper-footer .heading {
  padding: 4.9333333333rem 0 4.1333333333rem;
  color: #fff;
  font-size: 2rem;
}
footer .upper-footer .form-area {
  background-color: #3d7eb8;
  padding: 3rem 2.3333333333rem;
}
footer .upper-footer .form-area .form-group {
  margin-bottom: 1.0666666667rem;
}
footer .upper-footer .form-area .form-group .form-control {
  border-radius: 0;
  background-color: transparent;
  font-size: 1.2rem;
  color: #fff;
  padding: 1.3333333333rem 1.6666666667rem;
}
footer .upper-footer .form-area .form-group .form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
footer .upper-footer .form-area .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
footer .upper-footer .form-area .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
footer .upper-footer .form-area .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
footer .upper-footer .form-area button {
  background-color: #fff;
  color: #3d7eb8;
  padding: 1rem 1.6666666667rem;
  border: 0;
}
footer .upper-footer .form-area button i {
  margin-left: 1.6666666667rem;
}
footer .upper-footer .blog-area {
  background-color: #ececec;
  padding: 3rem 2.3333333333rem;
}
footer .upper-footer .blog-area .swiper {
  margin-bottom: 2.6666666667rem;
}
footer .upper-footer .blog-area .footer-blog-pagination-wrapper {
  position: relative;
}
footer .upper-footer .blog-area .footer-blog-pagination-wrapper .swiper-pagination {
  bottom: auto;
  top: auto;
  left: 0;
  right: auto;
  text-align: left;
  position: relative;
}
footer .sub-footer {
  position: relative;
  z-index: 1;
}
footer .sub-footer .contact-box p {
  color: #8b8a8f;
  font-size: 1.0666666667rem;
  margin-bottom: 3.3333333333rem;
}
footer .sub-footer .contact-box p a {
  color: inherit;
}
footer .sub-footer .contact-box p a:hover {
  color: #fff;
}
footer .sub-footer .contact-box .contact-info {
  align-items: center;
}
footer .sub-footer .contact-box .contact-info i {
  color: #fff;
  font-size: 2.4rem;
}
footer .sub-footer .contact-box .contact-info .phone-text {
  color: #fff;
  font-size: 1.1333333333rem;
}
footer .sub-footer .contact-box .contact-info .phone-text span {
  line-height: 1;
  font-size: 2.1333333333rem;
}
footer .sub-footer .contact-box .contact-info a {
  color: #fff;
  font-size: 1.2rem;
}
footer .sub-footer .nav-links a {
  display: block;
  color: #8b8a8f;
  font-size: 1.0666666667rem;
  margin-bottom: 1.4666666667rem;
  text-decoration: none;
}
footer .sub-footer .nav-links a:hover {
  color: #fff;
}
footer .sub-footer .newsletter-area P {
  color: #FFF;
  font-size: 1.0666666667rem;
  line-height: 1.6rem;
  margin-bottom: 2rem;
}
footer .sub-footer .newsletter-area .newsletter-input {
  border: 1px solid #3d7eb8;
  display: flex;
}
footer .sub-footer .newsletter-area .newsletter-input input {
  display: block;
  width: 100%;
  border: 0;
  background-color: transparent;
  padding: 1.3333333333rem;
}
footer .sub-footer .newsletter-area .newsletter-input button {
  border: 0;
  background-color: #3d7eb8;
  color: #fff;
  padding: 1.3333333333rem;
}

.about-us-section-1 {
  /*
  background-image:url(../img/bg-biz-kimiz.jpg);
  background-size:cover;
  background-position:top ;
  */
  padding-top: 24.4rem;
  position: relative;
}
.about-us-section-1 .section-image {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
}
.about-us-section-1 .section-image img {
  display: block;
  width: 100%;
}
.about-us-section-1 .content-header {
  position: absolute;
  width: 100%;
  top: 3.3333333333rem;
  text-shadow: 1px 1px 0px #202020;
  z-index: 1;
}
.about-us-section-1 .about-us-content {
  background-color: #fff;
  padding: 4rem 6.6666666667rem;
  margin-bottom: 8.3333333333rem;
  position: relative;
  z-index: 1;
}
.about-us-section-1 .about-us-content .heading {
  color: #3d7eb8;
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
.about-us-section-1 .about-us-content p {
  font-size: 1.2rem;
  color: #323030;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .about-us-section-1 {
    background-size: 270%;
    background-repeat: no-repeat;
    background-position: top center;
  }
  .about-us-section-1 .about-us-content {
    padding: 2.6666666667rem;
  }
}

.what-we-do-section-1 .content-header {
  margin-bottom: 6.6666666667rem;
  height: 6.6666666667rem;
  display: flex;
  align-items: center;
  background-image: url(../img/bg-neler-yapariz.jpg);
  background-position: center;
  background-size: cover;
}
.what-we-do-section-1 .what-we-do-list .upper-text {
  text-align: center;
  font-size: 1.2rem;
  max-width: 53.3333333333rem;
  margin: 5.3333333333rem auto;
}
.what-we-do-section-1 .what-we-do-list .item {
  margin-bottom: 10rem;
  padding: 1rem;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}
.what-we-do-section-1 .what-we-do-list .item .icon {
  margin: 0 auto;
  width: 8rem;
  height: 8rem;
}
.what-we-do-section-1 .what-we-do-list .item .icon img {
  display: block;
  width: 100%;
}
.what-we-do-section-1 .what-we-do-list .item .text-content .title {
  font-size: 1.5333333333rem;
  font-weight: 700;
  color: #3d7eb8;
  margin-bottom: 1.3333333333rem;
}
.what-we-do-section-1 .what-we-do-list .item:hover {
  box-shadow: -3px 3px 40px 0px rgba(15, 54, 84, 0.11);
}
@media screen and (max-width: 767px) {
  .what-we-do-section-1 .content-header {
    background-color: #f4f7fa;
    background-image: none;
  }
}
.what-we-do-section-1 .what-we-do-detail-content {
  margin-bottom: 6.6666666667rem;
  color: #323030;
}
.what-we-do-section-1 .what-we-do-detail-content h1 {
  font-size: 2.5333333333rem;
  margin-bottom: 1.3333333333rem;
}
.what-we-do-section-1 .what-we-do-detail-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1.3333333333rem;
}
.what-we-do-section-1 .what-we-do-detail-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.what-have-we-done-section-1 {
  margin-bottom: 6.6666666667rem;
  overflow: hidden;
}
.what-have-we-done-section-1 .content-header {
  margin-bottom: 6.6666666667rem;
  height: 6.6666666667rem;
  display: flex;
  align-items: center;
  background-image: url(../img/bg-neler-yapariz.jpg);
  background-position: center;
  background-size: cover;
}
.what-have-we-done-section-1 .project-list {
  margin-bottom: 100px;
}
.what-have-we-done-section-1 .project-list .heading {
  font-size: 2rem;
  font-weight: 700;
  transform: translateY(5rem);
}
.what-have-we-done-section-1 .project-list .project-row {
  margin-left: -2.6666666667rem;
  margin-right: -2.6666666667rem;
}
.what-have-we-done-section-1 .project-list .project-row > * {
  padding-left: 2.6666666667rem;
  padding-right: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .what-have-we-done-section-1 .project-list .project-row {
    margin-left: -0.6666666667rem;
    margin-right: -0.6666666667rem;
  }
  .what-have-we-done-section-1 .project-list .project-row > * {
    padding-left: 0.6666666667rem;
    padding-right: 0.6666666667rem;
  }
  .what-have-we-done-section-1 .project-list .project-row .project-col:nth-child(odd) {
    transform: translateY(8.4666666667rem);
  }
  .what-have-we-done-section-1 .project-list .project-row .project-col .item {
    margin-bottom: 2.6666666667rem;
    overflow: hidden;
  }
  .what-have-we-done-section-1 .project-list .project-row .project-col .item img {
    display: block;
    width: 100%;
    transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .what-have-we-done-section-1 .project-list .project-row .project-col .item img:hover {
    transform: scale(1.1) rotate(5deg);
  }
}
.what-have-we-done-section-1 .project-list .project-col:nth-child(odd) {
  transform: translateY(8.4666666667rem);
}
.what-have-we-done-section-1 .project-list .project-col .item {
  margin-bottom: 5.3333333333rem;
  overflow: hidden;
}
.what-have-we-done-section-1 .project-list .project-col .item img {
  display: block;
  width: 100%;
  transition: all 300ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.what-have-we-done-section-1 .project-list .project-col .item img:hover {
  transform: scale(1.1) rotate(5deg);
}
.what-have-we-done-section-1 .project-list .buttons {
  display: flex;
  transform: translateY(-1.2666666667rem);
}
.what-have-we-done-section-1 .project-list .buttons a {
  margin-left: auto;
  display: inline-flex;
  color: #323030;
  background-color: #fff;
  text-decoration: none;
  padding: 1.3333333333rem;
  font-size: 1.0666666667rem;
  border: 1px solid #3d7eb8;
}
@media screen and (max-width: 767px) {
  .what-have-we-done-section-1 .content-header {
    background-color: #f4f7fa;
    background-image: none;
    margin-bottom: 3.3333333333rem;
  }
  .what-have-we-done-section-1 .project-list {
    padding-top: 2.6666666667rem;
  }
  .what-have-we-done-section-1 .project-list .heading {
    transform: translateY(0);
    margin-bottom: 2.6666666667rem;
  }
  .what-have-we-done-section-1 .project-list .project-col:nth-child(odd) {
    transform: translateY(0rem);
  }
}

.companies {
  margin-bottom: 6.6666666667rem;
  padding-top: 6.6666666667rem;
}
.companies .heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3.3333333333rem;
}
.companies .company-list .img-box {
  box-shadow: 0px 9.74px 31.17px -3.9px rgba(24, 39, 75, 0.1019607843);
  margin-bottom: 3.3333333333rem;
  padding: 1.3333333333rem 0;
  border-radius: 20px;
}
.companies .company-list .img-box img {
  width: 50%;
  display: block;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}

.blog-section-1 {
  position: relative;
}
.blog-section-1 .blog-header-image {
  padding: 3.3333333333rem 0;
  text-align: center;
}
.blog-section-1 .blog-header-image img {
  max-width: 100%;
}
.blog-section-1 .blog-list .blog-card {
  box-shadow: 0px 3px 131px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 6.6666666667rem;
}
.blog-section-1 .blog-detail-image img {
  display: block;
  width: 100%;
}
.blog-section-1 .blog-content {
  padding: 4rem 6.6666666667rem;
  position: relative;
  background-color: #ffffff;
  margin-top: -9rem;
}
.blog-section-1 .blog-content h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 2.6666666667rem;
  color: #3d7eb8;
  font-weight: 700;
}
.blog-section-1 .blog-content p {
  font-size: 1.0666666667rem;
  line-height: 2.1333333333rem;
  color: #222527;
  margin-bottom: 2rem;
}
.blog-section-1 .blog-content h2 {
  color: #3d7eb8;
  font-weight: 700;
  margin-bottom: 2rem;
}
.blog-section-1 .blog-detail-header {
  position: absolute;
  width: 100%;
  top: 3.3333333333rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .blog-section-1 .blog-content {
    padding: 2rem;
    margin-top: -2.3333333333rem;
  }
  .blog-section-1 .blog-content h1 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2.6666666667rem;
    color: #3d7eb8;
    font-weight: 700;
  }
}

.blog-card .image img {
  display: block;
  width: 100%;
}
.blog-card .card-content {
  padding: 1.3333333333rem;
  background-color: #ffffff;
}
.blog-card .card-content .title {
  font-size: 1.2rem;
  line-height: 1.4666666667rem;
  color: #323030;
  margin-bottom: 1.3333333333rem;
}
.blog-card .card-content p {
  font-size: 1.0666666667rem;
  color: #8b8a8f;
  line-height: 1.4666666667rem;
}

.contact-section {
  position: relative;
}
.contact-section .sub-content {
  position: relative;
}
.contact-section .contact-info-box {
  box-shadow: 1px 1px 29px 0px rgba(15, 54, 89, 0.17);
  position: absolute;
  background-color: #f3f4f5;
  left: 50%;
  right: auto;
  transform: translate(-50%, 0);
  z-index: 2;
  padding: 2.3333333333rem 5.6666666667rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  color: #242628;
}
.contact-section .contact-info-box a {
  color: inherit;
}
.contact-section .contact-info-box .phone {
  margin-bottom: 1rem;
}
.contact-section .content-header {
  height: 6.6666666667rem;
  display: flex;
  align-items: center;
  background-image: url(../img/bg-neler-yapariz.jpg);
  background-position: center;
  background-size: cover;
}
.contact-section .map-box {
  position: relative;
}
.contact-section .map-box .map {
  padding-bottom: 60%;
  position: relative;
}
.contact-section .map-box .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact-section .map-box .map-text-content {
  width: 50%;
  position: relative;
  border-radius: 20px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
  box-shadow: 1px 1px 29px 0px rgba(15, 54, 89, 0.3);
}
.contact-section .map-box .map-text-content .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.6666666667rem 0;
  position: relative;
  z-index: 1;
}
.contact-section .map-box .map-text-content .inner .icon {
  width: 2.6666666667rem;
  margin-bottom: 2.3333333333rem;
}
.contact-section .map-box .map-text-content .inner .icon img {
  display: block;
  width: 100%;
}
.contact-section .map-box .map-text-content .inner .title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #242628;
  margin-bottom: 1rem;
}
.contact-section .map-box .map-text-content .inner .address {
  font-size: 1.2rem;
  color: #242628;
  line-height: 2.4rem;
}
.contact-section .map-box .map-text-content:before, .contact-section .map-box .map-text-content:after {
  display: block;
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  z-index: 0;
}
.contact-section .map-box .map-text-content:before {
  border: 3px dashed #3d7eb8;
  transform: scale(1.06);
  left: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-right: 0;
}
.contact-section .map-box .map-text-content:after {
  background-color: #fff;
  border: 10px solid #3d7eb8;
  right: 0;
  transform: scale(1.1);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-left: 0;
}
.contact-section .contact-form-area {
  margin-bottom: 13.3333333333rem;
}
.contact-section .contact-form-area .text-content {
  color: #60605c;
  margin-bottom: 4rem;
  text-align: center;
}
.contact-section .contact-form-area .text-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
}
.contact-section .contact-form-area .text-content p {
  font-size: 1.2rem;
}
.contact-section .contact-form-area .form-group {
  margin-bottom: 1.0666666667rem;
}
.contact-section .contact-form-area .form-group .form-control {
  border-radius: 0;
  background-color: transparent;
  font-size: 1.2rem;
  color: #fff;
  padding: 1.3333333333rem 1.6666666667rem;
}
.contact-section .contact-form-area .form-group .form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #323232;
  opacity: 1; /* Firefox */
}
.contact-section .contact-form-area .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #323232;
  opacity: 1; /* Firefox */
}
.contact-section .contact-form-area .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #323232;
}
.contact-section .contact-form-area .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #323232;
}
.contact-section .contact-form-area .form-group textarea {
  height: 16rem;
}
.contact-section .contact-form-area button {
  background-color: #3d7eb8;
  color: #fff;
  padding: 1.4666666667rem 1.6666666667rem;
  border: 0;
}
.contact-section .contact-form-area button i {
  margin-left: 1.6666666667rem;
}
@media screen and (max-width: 767px) {
  .contact-section .content-header {
    background-color: #f4f7fa;
    background-image: none;
  }
  .contact-section .contact-info-box {
    position: relative;
    border-radius: 0;
  }
  .contact-section .map-box .map-text-content {
    width: 80%;
    margin: 2.6666666667rem 0 8rem;
    transform: translateY(0%);
    margin-left: auto;
    margin-right: auto;
  }
}

.offer-section {
  margin-bottom: 10rem;
}
.offer-section .content-header {
  margin-bottom: 6.6666666667rem;
  height: 6.6666666667rem;
  display: flex;
  align-items: center;
  background-image: url(../img/bg-neler-yapariz.jpg);
  background-position: center;
  background-size: cover;
}
.offer-section .form-group {
  margin-bottom: 1.0666666667rem;
}
.offer-section .form-group .form-control {
  border-radius: 0;
  background-color: transparent;
  font-size: 1.2rem;
  color: #fff;
  padding: 1.3333333333rem 1.6666666667rem;
}
.offer-section .form-group .form-control::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #323232;
  opacity: 1; /* Firefox */
}
.offer-section .form-group .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #323232;
  opacity: 1; /* Firefox */
}
.offer-section .form-group .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #323232;
}
.offer-section .form-group .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #323232;
}
.offer-section button {
  background-color: #3d7eb8;
  color: #fff;
  padding: 1rem 1.6666666667rem;
  border: 0;
}
.offer-section button i {
  margin-left: 1.6666666667rem;
}
.offer-section .checkbox-list .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-left: 0;
}
.offer-section .checkbox-list .form-check .form-check-input {
  width: 1.6666666667rem;
  height: 1.6666666667rem;
  margin-left: 0;
  float: none;
  margin-top: 0;
  margin-right: 0.6666666667rem;
}
@media screen and (max-width: 767px) {
  .offer-section .content-header {
    background-color: #f4f7fa;
    background-image: none;
    margin-bottom: 3.3333333333rem;
  }
}

.project-detail {
  margin-bottom: 10rem;
}
.project-detail .content-header {
  margin-bottom: 6.6666666667rem;
  height: 6.6666666667rem;
  display: flex;
  align-items: center;
  background-image: url(../img/bg-neler-yapariz.jpg);
  background-position: center;
  background-size: cover;
}
.project-detail figure img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.project-detail .tags {
  text-align: center;
  margin-bottom: 3.3333333333rem;
}
.project-detail .tags .tag {
  display: inline-block;
  padding: 0.3333333333rem 1.3333333333rem;
  margin-bottom: 0.6666666667rem;
  border: 1px solid #cbddec;
  border-radius: 100px;
  margin-right: 0.6666666667rem;
  background-color: #fff;
}
.project-detail .buttons {
  margin-bottom: 5rem;
  text-align: center;
}
.project-detail .buttons a {
  border: 1px solid #3d7eb8;
  display: inline-flex;
  align-items: center;
  color: #323030;
  background-color: #fff;
  text-decoration: none;
  padding: 1.3333333333rem;
  font-size: 1.0666666667rem;
  margin: 0 0.6666666667rem;
}
.project-detail .buttons a i {
  margin-left: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .project-detail .content-header {
    background-color: #f4f7fa;
    background-image: none;
    margin-bottom: 3.3333333333rem;
  }
  .project-detail .tags .tag {
    font-size: 0.8rem;
  }
  .project-detail .buttons a {
    margin-bottom: 1rem;
  }
}

.content-header .heading {
  font-size: 1.6rem;
  color: #3d7eb8;
  font-weight: 600;
}
.content-header .breadcrumb-area a {
  color: #abc1d4;
  border-right: 1px solid #abc1d4;
  padding-right: 10px;
  padding-left: 10px;
}
.content-header .breadcrumb-area a:last-child {
  color: #6e9fcb;
  border-right: 0;
}/*# sourceMappingURL=main.css.map */