body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
a {
  color: #444444;
  text-decoration: none;
}
a:hover {
  color: #e76668;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
a:active,a:focus,button:active,button:focus,
img:active,img:focus,input:focus,
select:active,input:active,
select:focus,textarea:focus {
  outline:0!important;
  outline:none!important;
  outline-color:transparent!important;
  outline-style:none!important;
  box-shadow:none!important;
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e00919;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  box-shadow: 0px 2px 5px rgb(0 0 0 / 10%);
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#header .logo img {
  height: 60px;
}
@media (max-width: 992px) {
  #header .logo img {
    height: 60px;
  }
}
.get-started-btn {
  margin-left: 40px;
  background: #2a4673;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}
.get-started-btn:hover {
  background: #e00919;
  color: #fff;
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
@media (max-width: 500px) {
  .get-started-btn {
    display:none;
  }
}
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2a4673;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 15px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #e00919;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 17px;
}
.navbar .dropdown ul a i {
  font-size: 15px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #e00919;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
.mobile-nav-toggle {
  color: #2a4673;
  font-size: 36px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  color: #111111;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #e00919;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #e00919;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar li.hide {
    display:none;
  }
}
#banner {
  width: 100%;
  height: 85vh;
  background-position: top center;
  background-repeat:no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 15vh;
}
#banner:before {
  content: "";
  background: rgba(16, 24, 36, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#banner h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
#banner h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}
#banner .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 50px;
  color: #fff;
  background: #e00919;
  border: 2px solid #e00919;
}
#banner .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}
@media (max-width: 768px) {
  #banner {
    height:60vh;
    text-align: center;
  }
  #banner h1 {
    font-size: 28px;
  }
  #banner h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #banner .btn-get-started {
    font-size: 14px;
    padding: 5px 20px;
  }
}
@media (max-width: 500px) {
  #banner {
    height:70vh;
  }
  #banner h1 {
    font-size: 24px;
  }
  #banner h2 {
    font-size: 16px;
  }
}
section {
  overflow: hidden;
  position: relative;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #e00919;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}
.section-bg {
  padding: 90px 0 50px 0;
  color: #fff;
}
@media (max-width: 992px) {
  .section-bg {
    padding: 50px 0 100px 0;
    color: #fff;
  }
}
.section-bg:before {
  content: "";
  background: #1f3251;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}
#inner-page {
  min-height:500px;
  padding: 50px 0 30px 0;
}
#inner-page video {
  height:400px;
  border:1px solid #ccc;
  display:block;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:30px;
}
#inner-page h6 {
  color: #e00919;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top:40px;
}
#inner-page p {
  line-height:175%;
}
#inner-page ol {
  margin:0px 0px 0px 2px;
  padding: 0px 0px 0px 20px;
  position: relative;
  list-style: none;
}
#inner-page ol li::before {
  content: '\1F680';
  position: absolute;
  left: 0;
  font-size: 10px;
  color: #3598db;
  margin-top: 5px;
}
#inner-page ol li {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #inner-page {
    padding: 30px 0;
  }
  #inner-page video {
    width:100%;
    height:auto;
  }
}
.selection {
  margin-top: 30px;
  margin-bottom:30px;
  border:3px solid #e5e5e5;
  padding:30px;
  text-align:center;
}
@media (max-width: 576px) {
  .selection {
    margin-top:0px;
  }
}
.selection img {
  max-width:100%;
  height:130px;
  margin-bottom:30px;
}
.selection h1 {
  font-size: 20px;
  font-weight: bold;
  color: #253c60;
  margin-bottom:20px;
}
.selection p {
  margin-bottom:20px;
}
.apply h1 {
  color: #e00919;
  font-size: 22px;
  font-weight: bold;
}
.apply h2 {
  color: #253c60;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
.apply img.cover {
  max-width:100%;
  height:250px;
  margin-bottom:30px;
}
@media (max-width: 767px) {
  .apply h1 {
    font-size: 18px;
  }
  .apply h2 {
    font-size: 16px;
  }
  .apply img.cover {
    height:200px;
  }
}
.attention img {
  height:170px;
  max-width:100%;
  margin-bottom:20px;
}
.attention h1 {
  color: #e00919;
  font-size: 20px;
  font-weight:bold;
  margin-bottom:30px;
}
.attention p {
  line-height:175%;
  font-size:17px;
}
.attention a.btn {
  margin-top:30px;
}
#sure {
  background: #e10819;
  color: #fff;
  font-size: 20px;
  padding: 5px;
  border-radius: 5px;
  width: 70px;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999;
}
select.form-control {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  cursor:pointer;
}
#breadcrumbs {
  padding: 30px 0 5px 0;
  background: #253c60;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}
#breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
#breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
#breadcrumbs ol a {
  color: #fff;
}
#breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}
#breadcrumbs ol li + li {
  padding-left: 10px;
}
#breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #e03a3c;
  content: "/";
}
@media (max-width: 991px) {
  #breadcrumbs ol {
    display:none;
  }
  #breadcrumbs h2 {
    font-size:22px;
  }
}
@media (max-width: 767px) {
  #breadcrumbs h2 {
    font-size:18px;
  }
}
#clients {
  padding: 40px 0 10px 0;
}
#about .container {
  position: relative;
  z-index: 10;
}
#about .content {
  padding: 30px 30px 30px 0;
}
#about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
#about .content p {
  margin-bottom: 30px;
}
#about .icon-boxes .icon-box {
  margin-top: 30px;
}
#about .icon-boxes .icon-box i {
  font-size: 20px;
  color: #ffdc74;
  margin-bottom: 15px;
}
#about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
#about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #f5f5f5;
}
@media (max-width: 1200px) {
  #about .content {
    padding-right: 0;
    padding-bottom:0;
  }
}
@media (max-width: 768px) {
  #about {
    text-align: center;
  }
}
#why-us {
  padding-top:30px;
  padding-bottom:30px;
  margin-bottom:50px;
}
#why-us .why-box {
  padding: 30px;
  background: #e00919;
  color: #fff;
}
#why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}
#why-us .why-box p {
  margin-bottom: 30px;
}
#why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}
#why-us .why-box .more-btn i {
  font-size: 14px;
}
#why-us .why-box .more-btn:hover {
  color: #e00919;
  background: #fff;
}
#why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}
#why-us .icon-box i {
  color: #e00919;
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-weight:bold;
  font-style:normal;
}
#why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
}
#why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}
@media (min-width: 1200px) {
  #why-us .icon-box:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 767px) {
  #why-us {
    display:none;
  }
}
#send-message {
  background: #1f3251 none repeat scroll 0 0;
  padding: 30px 0;
  margin-bottom:60px;
}
#send-message .msg-text {
  display: block;
  padding: 10px 0;
}
#send-message .msg-text h3 {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1.5px;
}
#send-message .msg-btn {
  background: #fff none repeat scroll 0 0;
  border: 2px solid #fff;
  color: #1f3251;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-left: 150px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
}
#send-message .msg-btn:hover {
  background: #1f3251 none repeat scroll 0 0;
  border: 2px solid #fff;
  color: #fff;
}
@media (max-width: 767px) {
  #send-message {
    display:none;
  }
}
@media (max-width: 991px) {
  #send-message .msg-btn {
    margin-left:0px;
    margin-top:30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #send-message .msg-text h3 {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media (min-width: 874px) and (max-width: 991px) {
  #send-message {
    padding-top:0px;
  }
}
#faq {
  margin-bottom:60px;
}
#faq .faq-list {
  padding: 0;
  list-style: none;
}
#faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#faq .faq-list a {
  display: block;
  position: relative;
  font-family: #e00919;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
#faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
#faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
#faq .faq-list .icon-show {
  display: none;
}
#faq .faq-list a.collapsed {
  color: #343a40;
}
#faq .faq-list a.collapsed:hover {
  color: #e00919;
}
#faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
#faq .faq-list a.collapsed .icon-close {
  display: none;
}
#gallery {
  background-color: #f4fbfe;
  padding: 40px 0 40px 0;
  margin-bottom:20px;
}
#gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  margin-bottom:20px;
}
#gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
#gallery .gallery-item:hover img {
  transform: scale(1.1);
}
#counts {
  padding: 60px 0 60px 0;
}
#counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  background-color: #fff;
}
#counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e00919;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}
#counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
#team .member {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 5px;
  background: #f1f1f1;
  cursor:pointer;
}
#team .member .member-img {
  overflow: hidden;
  filter: grayscale(40%);
  transition: 0.3s;
}
#team .member:hover .member-img {
  filter: none;
}
@media (max-width: 576px) {
  #team .member .member-img {
    filter: none;
    transition: 0s;
  }
}
#team .member .member-info {
  padding: 10px 5px;
  background: #475871;
  text-align:center;
}
#team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #fff;
}
#team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #e5e5e5;
}
#education .lesson {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 5px;
  background: #f1f1f1;
  cursor:pointer;
}
#education .lesson .lesson-img {
  overflow: hidden;
}
#education .lesson .lesson-info {
  padding: 10px 5px;
  background: #475871;
  text-align:center;
}
#education .lesson .lesson-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #fff;
}
#client .client-item {
  box-sizing: content-box;
  padding: 30px;
  margin-bottom: 40px;
  height: 210px;
  overflow:hidden;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}
@media (max-width: 991px) {
  #client .client-item {
    height:auto;
  }
}
#client .client-item .client-img {
  height: 50px;
  max-width:100%;
  display:block;
  margin: 0 auto;
}
#client .client-item h3 {
  font-size: 17px;
  font-weight: bold;
  text-align:center;
  margin: 20px 0px;
  color: #253c60;
}
#client .client-item .quote-icon-left,
#client .client-item .quote-icon-right {
  color: #e7e7e7;
  font-size: 26px;
}
#client .client-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
#client .client-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
#client .client-item p {
  font-style: italic;
  font-size:15px;
  margin: 0px;
  padding: 0;
}
#corp .corp-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  background-color: #fff;
  margin-top:30px;
  margin-bottom:50px;
}
#corp .corp-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e00919;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#corp .corp-box h4 {
  padding: 0;
  margin: 20px 0px 10px 0px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight:bold;
  color:#253c60;
}
#corp .corp-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-style:italic;
}
#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  height:250px;
  overflow:hidden;
}
@media (max-width: 991px) {
  #testimonials .testimonial-item {
    height:auto;
  }
}
#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0px 0 5px 0;
  color: #253c60;
}
#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
#testimonials .testimonial-item .quote-icon-left,
#testimonials .testimonial-item .quote-icon-right {
  color: #e7e7e7;
  font-size: 26px;
}
#testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
#testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
#testimonials .testimonial-item p {
  font-style: italic;
  font-size:15px;
  margin: 15px 0 0 0;
  padding: 0;
}
.page-pagination {
  color: #444;
  margin-top:20px;
  font-size:14px;
}
.page-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.page-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  background:#f5f5f5;
}
.page-pagination li a,
.page-pagination li span {
  color: #444;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-pagination li.active, .page-pagination li:hover {
  background: #e03a3c;
  color:#fff;
}
.page-pagination li.active a, .page-pagination li:hover a,
.page-pagination li.active span, .page-pagination li:hover span {
  color: #fff;
}
#contact .info {
  width: 100%;
  background: #fff;
}
#contact .info i {
  font-size: 20px;
  color: #1a1a1a;
  float: left;
  width: 44px;
  height: 44px;
  background: #edeff1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
#contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2a4673;
}
#contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #1a1a1a;
}
#contact .info .email, #contact .info .phone {
  margin-top: 40px;
}
#contact .info .email:hover i, #contact .info .address:hover i, #contact .info .phone:hover i {
  background: #e00917;
  color: #fff;
}
#contact form {
  width: 100%;
  background: #fff;
}
#contact form .form-group {
  padding-bottom: 8px;
}
#contact form input, #contact form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
#contact form input:focus, #contact form textarea:focus {
  border-color: #d9232d;
}
#contact form input {
  height: 44px;
}
#contact form textarea {
  padding: 10px 12px;
}
@media (max-width: 991px) {
  select, input, textarea {
    font-size: 16px!important;
  }
}
#contact form button[type=submit] {
  background: #d9232d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
#contact form button[type=submit]:hover {
  background: #e24d55;
}
#footer {
  color: #fff;
  font-size: 14px;
  background: #0e192b;
}
#footer .footer-top {
  padding: 40px 0 20px 0;
  background: #172a48;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact img {
  height:60px;
  max-width:100%;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e00919;
  bottom: 0;
  left: 0;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #footer .footer-top .footer-links,
  #footer .footer-top .footer-contact {
    display:none;
  }
  #footer .footer-top {
    padding-top:30px;
  }
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #e00919;
}
.footer-newsletter {
  font-size: 15px;
}
.footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}
.footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
.footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e00919;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.footer-newsletter form input[type=submit]:hover {
  background: #e35052;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #172a48;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #e00919;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .container {
    max-width:95%;
  }
}
@media (min-width: 768px) and (max-width:991px) {
  #footer .footer-newsletter {
    display:none;
  }
}
.text-muted {
  color:#999999!important;
  font-size:0.8em;
}
.cerez{
  position:fixed;
  bottom:0;
  left:0;
  background-color:rgba(14,25,43,.95);
  width:100%;
  z-index:9999;
  font-size:14px;
  padding:10px 5px;
  box-sizing:border-box;
}
.cerez .cerez-kapat{
  padding:2px 8px;
  font-size:13px;
  text-decoration:none;
  margin-left:10px;
}
.cerez .cerez-detay{
  color:#74e0ff;
}
.cerez .cerez-icerik{
  color:#fff;
}
@media (max-width: 520px){
  .cerez{
    font-size:12px;
  }
  .cerez .cerez-kapat{
    font-size:12px;
    margin-left:0;
    margin-top:10px;
  }
}
.g-recaptcha div {
  margin-left:auto;
  margin-right:auto;
}