/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --primary_color: #29abe2;
  --secondary_color: #f25359;
}

body {
  font-family: "Popins","Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--primary_color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary_color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins","Raleway", sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1em;
}

.title {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 700;
}
.title:hover {
  background-color: var(--primary_color);
  color: #fff;
}
@media (min-width: 768px) {
  .title {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 22px;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary_color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary_color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary_color);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(163, 163, 163, 0.4);
}
#header .logo-header{
background-color: var(--primary_color);
}
#header .logo-header a{
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}


/**
* Get Startet Button 
*/
.btn-with-bg {
  margin-left: 22px;
  background: var(--primary_color);
  color: #fff;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  display: inline-block;
}

.btn-with-bg:hover {
  background: var(--secondary_color);
  color: #fff;
}

@media (max-width: 768px) {
  .btn-with-bg {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.page-name{
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 1rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.page-name > a{
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
}
@media (max-width: 768px) {
  .page-name > a{
    font-size: 28px;
  }
  
}
.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 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00598c;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  background: var(--primary_color);
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  margin: 0;
  padding: 5px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #fff;
}

.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 Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  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(32, 38, 34, 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;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--primary_color);
}


.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: var(--primary_color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f7f6;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}

@media (max-width: 992px) {
  .section-title h2 {
    font-size: 18px;
  }
  .section-title a {
    font-size: 14px;
  }
}

.section-title-sidebar {
  border-left: 5px solid var(--secondary_color);
  padding-left: 1rem;
}


/*--------------------------------------------------------------
# Filter pAge
--------------------------------------------------------------*/
.filter-form {
  background-color: rgb(235, 235, 235);
  padding: 1rem 2rem;
}
.filter-form .form-group {
  padding-bottom: 8px;
}
.filter-form .form-group .search-icon {
  position: absolute;
  font-size: 24px;
  margin-left: 12px;
}
.filter-form .form-group label {
  font-weight: 600;
  color: #000;
}
.filter-form input {
  border-radius: 0;
  font-weight: 500;
  box-shadow: none;
  font-size: 16px;
  border: 0;
  padding-left: 3rem;
}

.filter-form input:focus {
  border-color: var(--primary_color);
}

.filter-form input {
  height: 44px;
}
.filter-form .custom-select {
  border: 1px solid #000;
  border-radius: 0;
}
.filter-form .custom-select:focus {
  border-color: var(--primary_color);
}

.artical-list-item {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
  margin-bottom: 40px;
}
.artical-list-item .artical-list-img {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.artical-list-item .artical-list-body {
  position: relative;
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.artical-list-item .artical-list-body .artical-list-date {
  font-weight: 700;
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .artical-list-text {
    display: none;
  }
}

.sosial-list-links {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
  font-weight: 700;
}

.social-list-item a {
  display: block;
  padding: 8px;
}
.social-list-item-icon {
  font-size: 32px;
  color: #333333;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
}
.social-list-item-label {
  display: inline-block;
  vertical-align: middle;
  padding-left: 8px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--primary_color);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top .footer-links h3 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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: var(--primary_color);
  background-color: #ffe500;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h3 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a {
  color: var(--secondary_color);
  transition: 0.3s;
}

#footer .credits a:hover {
  color: var(--primary_color);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary_color);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffe500;
  color: #444444;
  text-decoration: none;
}
