/* Colors
- body text: #646c8b 
- title/link text: #031b4e koyu lacivert
- primary: #0056b3 mavi
- list: #7884ac gri #9aa4c6
- ucuk mavi bg: #f6faff
- newsletter blue: + #5e7b97
*/

body {
  color: #646c8b;
  font-family: 'Poppins',sans-serif;
  font-size: 14px;
}

a {
  color: #0056b3;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #031b4e;
}

h2 {
  font-size: 30px;
  font-weight: 700;
}

h3 {
  font-size: 18px;
}

p, .karla {
  font-family: 'Open Sans', sans-serif;
}

p:last-child {
  margin-bottom: 0;
}

/* Buttons */
.btn {
  border-radius: 50px;
  font-size: 14px;
  padding: 8.5px 28px;
}

.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-hollow {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-hollow:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #0056b3;
}

.btn-link {
  color: #0056b3;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: none
}

/* Backgrounds */
.bg-primary {
  background-color: #0056b3 !important;
}

.bg-secondary {
  background-color: #f6faff !important;
}


/* Utilities */
.text-white {
  color: #ffffff;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

.text-24 {
  font-size: 24px;
}



/* Components */
/* Topbar */

.topbar {
  background-color: #0056b3;
  padding-top: 20px;
  padding-bottom: 5px;
  transition: background-color 200ms ease-out;
}

.topbar-right,
.topbar-left {
  flex: 1 1 auto;
}

.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.topbar .container {
  margin-bottom: 15px;
}

/* Plugin */
.stuck {
  position:fixed;
  width: 100%;
  top:0;
  z-index: 1000;
}

.stuck .topbar {
  background-color: #ffffff;  
  box-shadow: 0 0 20px rgba(0,0,0,.15);
}

.stuck .btn-hollow {
  color: #0056b3;
  border-color: #0056b3;
}

.stuck .header-menu__link {
  color: #0056b3;
}


.stuck .header-menu__link:hover {
 color: #0056b3; 
}

.stuck .header-menu__link::after {
  background-color: #0056b3;
}

/* Header logo */
.logo {
  color: white;
  font-size: 21px;
}

.stuck .logo {
  color: #0056b3;
}

/* Header button */
.header-button span {
  display: none;
}

.header-button.login {
  display: none;
}

/* Header menu */
.header-menu {
  display: none;
  margin-bottom: 0;
  margin-right: 20px;
  text-align: right;
}

.header-menu > .header-menu__item+.header-menu__item {
  padding-left: 30px;
}

.header-menu__item {
  display: inline-block;
  list-style-type: none; 
}

.header-menu__item.active .header-menu__link::after {
  width: 100%;
}


.header-menu__link {
  color: #ffffff;
  display: block;
  line-height: 1;
  padding: 6px 0;  
  position: relative;
}

.header-menu__link::after {
  background-color: #ffffff;
  bottom: -3px;
  content: ' ';
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 0;
  transition: width 300ms ease-out;
}

.header-menu__link:hover::after {
  width: 100%;
}

.header-menu__link:hover {
  color: #ffffff;
}


.jumbotron {
  position:  relative;
  background: none;
  padding: 70px 0 100px;
}

.jumbotron::before {
  height: 2000px;
}

.jumbotron-content h1 {
  font-family: 'Poppins',sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}

.jumbotron-content p {
  margin: auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 500px;
}

.diagonal-bg::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  transform: skewY(-6deg);
  --webkit-transform: skewY(-6deg);
}

.diagonal-bg--jumbotron::before {
  bottom: 0;
}

.diagonal-bg--fill::before {
  height: 100%;
}

.diagonal-bg--primary::before {
  background: #0056b3;
}

.diagonal-bg--secondary::before {
  background: #f6faff;
}

.diagonal-bg--content {
  margin-top: 70px;
  margin-bottom: 70px;
}

.go-down {
  position: absolute;
  width: 100%;
  bottom: -33px;
}

.go-down span {
  display: inline-block;
  width: 66px;
  height: 66px;
  border: 2px solid #ffffff;
  background-color: #0056b3;
  border-radius: 50%;
}

/* Features */

.single-feature-home {
  margin: 15px 0;
}

.single-feature-home h3 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 25px;
  padding-top: 30px;
}

.single-feature-home h3::before {
  position: absolute;
  top: 0;
  content: '';
  height: 1px;
  width: 50px;
  background-color: #031b4e;
}

.single-feature-home p {

}

.single-feature-boxed {
  padding: 30px 20px 25px;
  border-width: 1px;
  border-style: solid;
  border-top-color: #e1eeff;
  border-left-color: #e1eeff;
  border-right-color: #e1eeff;
  border-bottom-color: #0056b3;
  margin-bottom: 35px;
}

.single-feature-boxed h3 {
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-feature-boxed p {
  color: #9aa4c6;
}

.single-feature--features {
  border: 1px solid #e1eeff;
  border-bottom: 1px solid #0056b3;
  padding: 20px 10px;
  height: 100%;
}

.single-feature--features h3 {
  margin-bottom: 20px;
}


/* Section */
.section-default {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-cta {
  padding-top: 100px;
  padding-bottom: 100px;
}


/* Section Header */
.section-header {
  padding-bottom: 55px;
}

.section-header.text-left .section-header__title::before {
  margin: 0;
}

.section-header__title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-top: 0;
}


.section-header__title::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 2px;
  margin: 0 auto;
  bottom: 6px;
  left: 0;
  right: 0;
  background-color: #0056b3;
}

/* Section Footer */
.pricing-footer {
  margin: auto;
  max-width: 500px;
  padding-top: 50px; 
}

/* Single pricing plan */
.single-pricing-plan {
  border: 1px solid #e1eeff;
  background-color: #ffffff;
  padding-top: 25px;
  overflow: hidden;
  margin-bottom: 30px;
}

.single-pricing-plan p {
  padding: 0px 30px 15px;
  margin-bottom: 20px;
  position: relative;
}

.single-pricing-plan p::before {
  position: absolute;
  content: '';
  width: 50px;
  height: 2px;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0056b3;
}

.single-pricing-plan ul {
  padding: 0 30px;
  margin-bottom: 20px;
}

.single-pricing-plan ul li {
  margin: 10px 0;
}

.single-pricing-plan ul+span {
  font-size: 36px;
  line-height: 36px;
  font-weight: 500;
  color: #031b4e;
  display: block;
  padding: 0 30px;
}

.single-pricing-plan ul+span sup {
  top: -13px;
  font-size: 16px;
  margin-right: 3px;
}

.single-pricing-plan ul+span sub {
  font-size: 14px;
  color: #9aa4c6;
  bottom: 0;
  left: 2px;
}

.single-pricing-plan__footer {
  padding: 65px 0 30px;
  z-index: 1;
}

.single-pricing-plan__footer::before {
  bottom: -22px;
}

/* Advantages */
.single-advantage {
  margin-bottom: 25px;
}

.single-advantage h3 {
  margin-bottom: 15px;
}

/* advantages video */
.our-advantages-video {
  margin-top: 50px;
}

/* Newsletter */
.newsletter-header {
  margin-bottom: 30px;
}
.newsletter-header__body {
  font-size: 18px;
  color: #5e7b97;
  margin-top: 15px;
}


/* Subscribe form */
.subscribe-form {
  position: relative;
}
.subscribe-form__text {
  padding: 0 30px;
  height: 50px;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid #0063f8;
}

.subscribe-form__button{
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
}

/* Post Card */
.post-card {
  border: 1px solid #e1eeff;
  height: auto;
  background: #ffffff;
  margin-bottom: 50px;
}

.post-card__body {
  padding: 25px 35px;
}

.post-card__pubdate {
  font-size: 13px;
  margin-bottom: 20px;
  display: inline-block;
}

.post-card__more::after {
  content: ' \2192'
}

/* Footer */

.footer {
  background: #031b4e;
  font-size: 16px;
  color: #ffffff;
}

.footer::before {
  background: #031b4e;
  bottom: 110px;
}

.bottom-footer {
  background-color: #031b4e;
  padding: 25px 0;
}

.bottom-footer address a{
  color: #e0f3ff;
}

.bottom-footer address {
  color: #e0f3ff;
}

/* Landing */
.landing-jumbotron {
  padding: 20px 0 80px;
}

.landing-content h1,
.landing-content p{
  margin-left: 0;
}

.landing-content h1 {
  font-size: 32px;
}
.landing-content p {
  font-size: 14px;
}

.landing-content .subtitle-first {
  margin-bottom: 10px;
  display: none;
}

@media (min-width: 576px) {
  .landing-content .subtitle-first {
    display: block;
  }
  .landing-content h1 {
    font-size: 36px;
  }
  .landing-content p {
    font-size: 16px;
  }
  .landing-jumbotron {
    padding: 70px 0 100px;
  }
  
}

/* Landing Form */
.landing-form .form-control {
  font-size: 14px;
  background-color: #f6faff;
  border-color: #e1eeff;
  color: #031b4e;
}

.landing-form textarea {
  height: auto !important;
}

@media (min-width: 576px) {
  .landing-form textarea {
    height: 200px !important;
  }
}

@media (min-width: 992px) {
  .landing-form  {
    padding-left: 50px;
  }
}



/* Footer Form */
.footer-form .form-control {
  font-size: 14px;
  background-color: #243d66;
  border-color: #243d66;
  color: #ffffff;
}

.footer-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #3b5682;
}

.footer-form .btn-primary:active {
  background-color: #ffffff !important;
  color: #243d66 !important;
  border: #ffffff !important;
  box-shadow: none;
}


.footer-form .btn-primary:focus {
  box-shadow: none;
}

.footer-form .form-control::placeholder {
  color: #8f93a1;
}

.footer-form-title {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 500;
}

.footer-form-btn {
  font-size: 14px;
  padding: 5px 20px;
  z-index: 2;
}

/* ======= Footer Menu  ====== */
.bottom-footer-menu {
  padding: 10px 0;
  margin: 0;
}
.bottom-footer-menu .list-inline-item:not(:last-child){
  margin-right: 10px;
}

.bottom-footer-menu li a {
  font-size: 14px;
  color: #fff;
}

.bottom-footer-menu li a:hover {
  color: #ffffff;
}

/* Copyright Text */
.copyright-text {
  padding: 10px 0;
  color: #ffffff;
}


/* Mobile Menu */

.mobile-menu-outer {
  flex-direction: column;
  display: none;
  text-align: left;
  background-color: #fafafa;
  border: 1px solid #0063f8;
  box-shadow: 0 0 20px rgba(0,0,0,.15);
  margin-bottom: 15px;
}

.mobile-menu {
  margin: 0;
}

.mobile-menu__item {
  padding: 10px 10px 10px;
}

.mobile-menu__item + .mobile-menu__item {
  border-top: 1px solid #e1eeff;
}

/* Page Title */
.page-title {
  padding-top: 130px;
  padding-bottom: 95px;
}

/* Custom Breadcrumbs */

.custom-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
}
.custom-breadcrumbs__item + .custom-breadcrumbs__item::before{
  content: "/";
  padding-left: 10px;
  padding-right: 10px;
  color: white;
}

.custom-breadcrumbs__link {
  color: #ffffff;
}

.custom-breadcrumbs__link:hover {
  color: #9aa4c6;
}

/* Detail Content */
.detail-content {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Contact Detail */
.contact-detail {
  color: #7884ac;
}
.contact-detail h2 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 0;
}

.contact-detail p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Contact Info */
.contact-info__item{
  display: flex;
  margin-bottom: 20px;
  
}

.contact-info__item span:first-child {
  flex-basis: 100px;
  color: #031b4e;
}
.contact-info__item span:last-child {
  color: #031b4e;
}

/* Contact Form */
.contact-form textarea {
  height: 200px;
}

/* Contact Map */
.contact-map {
  margin-top: 40px;
}


/* Form Theme Default */
.form-theme--default input,
.form-theme--default textarea {
    border-radius: 0;
    border-color: #e1eeff;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding-top: 8px;
    padding-bottom: 8px;
}

.form-theme--default input::-webkit-input-placeholder,
.form-theme--default textarea::-webkit-input-placeholder  {
  color: #7884ac;
}

.form-theme--default input:-ms-input-placeholder,
.form-theme--default textarea:-ms-input-placeholder{ 
  color: #7884ac;
}

.form-theme--default input::placeholder,
.form-theme--default textarea::placeholder {
  color: #7884ac;
}

@media screen and (min-width: 576px) {

}

@media screen and (min-width: 768px) {
  .jumbotron {   
    padding: 85px 0 120px;
  }
  .jumbotron-content h1 {
    font-size: 60px;
  }

  .copyright-text {
    padding: 0;
    text-align: left;
    color: #ffffff;
  }
}

@media screen and (min-width: 992px) {
  .single-feature-home {
    margin: 0;
    border-bottom: 1px solid #0056b3;
  }
  .single-pricing-plan {
    margin-top: 0;
    margin-bottom: 0;
  }
  .single-advantage {
    margin-bottom: 30px;
  }
  .our-advantages-video {
    margin-top: 0;
  }
  .post-card {
    height: 100%;
    margin-bottom: 0;
  }
  .section-default {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .bottom-footer-menu .list-inline-item:not(:last-child){
    margin-right: 25px;
  }

  /* Header Button */
  .header-button.mobile-menu-toggle {
    display: none;
  }
  .header-button.login{
    display: inline-block;
    padding-left: 14px;
    padding-right: 14px;
  }
 
  .header-button span {
    display: inline;
  }



  /* Header Menu */
  .header-menu {
    display: flex;
  }

  /* Mobile Menu */
  .mobile-menu-outer {
    display: none !important;
  }

}

@media screen and (min-width: 1200px) {

}


/* Validation Styles */
.parsley-errors-list  {
  padding-top: 5px;
  padding-left: 0;
  margin-bottom: 0;
}
.parsley-errors-list li {
  color: #ffffff;
  font-size: 11px;
  font-style: italic;
  list-style-type: none;
}

/* Accordion */
.accordion-theme-default .card-header {
  background-color: #f6faff;
}

.accordion-theme-default .btn-link {
  color: #031b4e;
  white-space: normal;
  text-align: left;
}

.accordion-theme-default .btn-link:focus {
  text-decoration: none;
}

.accordion-theme-default .card {
  border-color: #e1eeff;
}
.accordion-theme-default .card-header {
  border-bottom-color: #e1eeff;
}