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

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

body {
  font-family: "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: 20px;
  }
}
@media (min-width: 992px) {
  .title {
    font-size: 24px;
  }
}
/*--------------------------------------------------------------
# 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;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--primary_color);
}

#header .logo img {
  max-height: 40px;
}

/**
* 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;
}

.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: 15px;
  font-weight: 500;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
  margin: 0 5px;
}

.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;
  left: 5px;
  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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  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 .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: var(--primary_color);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#top-slider {
  margin-top: 64px;
  padding-bottom: 0px;
  background: var(--primary_color);
  background: linear-gradient(180deg, #005587 0%, #2774ae 100%);
}
.top-slider-wraper {
  padding-bottom: 64px;
}
.top-slider-wraper .slider-img {
  width: 100%;
  height: 100%;
}
.slider-left {
  display: flex;
  position: relative;
}
.slider-right {
  position: relative;
}
#top-slider a:hover .slider-title {
  background: #0079bf;
  color: #ffffff;
}
.slider-title {
  padding: 16px 32px 12px;
  bottom: 0;
  z-index: 1;
  background: #fff;
  color: #00598c;
  max-width: 552px;
  position: absolute;
}
.slider-title.st-right {
  padding: 12px 16px 12px;
  max-width: 332px;
}
.st-left h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 27px;
  margin-bottom: 0;
}
.st-right h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 0;
}


#hero {
  width: 100%;
  height: 80vh;
  position: relative;
}

#hero:before {
  content: "";
  background-color: var(--primary_color);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: var(--primary_color);
  border: 2px solid var(--primary_color);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .st-left h3 {
    font-size: 16px;
    line-height: 20px;
  }
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# news
--------------------------------------------------------------*/
#popular-news {
  background-color: #f2f2f2;
}
.news .news-item {
  background-color: #fff;
}

.news .news-content {
  padding: 15px 20px;
}

.news .news-content h3 {
  font-weight: 700;
  font-size: 24px;
}

.news .news-content h3 a {
  color: #37423b;
  transition: 0.3s;
}

.news .news-content h3 a:hover {
  color: var(--primary_color);
}

.news .news-content p {
  font-size: 14px;
  color: #777777;
}

.news .news-content h4 {
  font-size: 16px;
  padding: 10px 0;
  margin: 0;
  line-height: 25px;
  margin-bottom: 10px;
}

.news .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.news .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.news .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.news .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}

/*--------------------------------------------------------------
# Chancellor Message
--------------------------------------------------------------*/
.chancellor .content {
  background-color: var(--primary_color);
  padding: 4rem;
  color: #fff;
}

.chancellor .content h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  margin-top: 3rem;
}
.chancellor .content .read-more-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.chancellor .content .read-more-btn:hover {
  background: #fff;
  color: var(--primary_color);
}

@media (max-width: 768px) {
  .chancellor .content {
    padding: 2rem;
    margin: 0;
  }
  .chancellor .content h3 {
    font-size: 18px;
    line-height: 30px;
  }
}

/*--------------------------------------------------------------
# News Story
--------------------------------------------------------------*/
.news-story {
  padding-top: 0px;
}

.news-story .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
}

.news-story .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.news-story .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.news-story .icon-box h3 a {
  color: #37423b;
  transition: 0.3s;
}

.news-story .icon-box:hover {
  border-color: var(--primary_color);
}

.news-story .icon-box:hover h3 a {
  color: var(--primary_color);
}

.news-story-content {
  padding: 10px 15px;
  background-color: var(--primary_color);
}
.news-story-content a {
  color: #ffffff;
  transition: 0.3s;
}

.news-story-item .last {
  background-color: var(--primary_color);
  color: #fff;
}

.news-story-item .last h6 {
  font-weight: 600;
}

.news-story-item .last h4 {
  color: var(--secondary_color);
  font-weight: 900;
}
.news-story-item .last p {
  font-size: 12px;
  margin: 0;
}
.news-story-content-last {
  background-color: #fff;
  padding: 10px 15px;
  border: 5px solid #197da8;
}
.news-story-content a:hover {
  background-color: #ffe500;
  color: #37423b;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
#events-section {
  background-color: #f2f2f2;
}
.events .events-item {
  background-color: #fff;
}

.events .events-content-frist {
  padding: 20px 15px 15px;
}
.events .events-content-frist:hover {
  background-color: var(--primary_color);
  transition: 0.3s;
}
.events .events-content-frist:hover h3 a {
  color: #fff;
  transition: 0.3s;
}
.events .events-content-last {
  padding: 15px 15px 17px 15px;
}

.events .events-content-frist .date {
  background-color: #ffe500;
  display: inline-block;
  padding: 5px;
  font-weight: 800;
  color: #000;
}

.events .events-content-frist h3 a {
  font-weight: 800;
  transition: 0.3s;
}

.events .events-content-last p {
  font-size: 14px;
  color: #888888;
  font-weight: 600;
}

.events .events-content-last h4 {
  font-size: 14px;
  margin: 0;
  line-height: 25px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Social Events
--------------------------------------------------------------*/

#social-events {
  background: #2774ae;
}
#social-events .social-post-header {
  padding-bottom: 10px;
  color: #ffffff;
  font-weight: bold;
}
#social-events .social-header-text {
  color: #ffffff;
}
#social-events .social-block {
  height: fit-content;
}
#social-events .social-post-container {
  background: #ffffff;
}
#social-events .social-post-container a {
  color: #333333;
}
.social-post-top {
  padding: 16px;
  justify-content: space-between;
}
.social-post-handle,
.social-post-timestamp {
  line-height: 20px;
  align-items: center;
  color: #999;
}
.social-post-handle strong {
  color: #000;
}
.social-post-author-image {
  margin-right: 8px;
  border-radius: 30px;
}
.social-post-media {
  width: 100%;
}
.social-post-info {
  padding: 16px;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 1;
  }
}
@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .card-columns {
    column-count: 4;
  }
}

/*--------------------------------------------------------------
# News Profile Page
--------------------------------------------------------------*/

.news-header .news-header-content {
  padding: 20px 15px 15px;
  background-color: #fff;
  position: relative;
}
.news-header .news-header-content .categories {
  background-color: #ffd100;
  padding: 5px 10px;
  display: inline-block;
  font-weight: 800;
}
.news-header .news-header-content h3 a {
  font-size: 40px;
  font-weight: 800;
}
.news-header .news-header-content:hover h3 a {
  color: #fff;
  transition: 0.3s;
  background-color: var(--primary_color);
}

.news-header-item {
  background-color: #fff;
}

.news-header-item .news-header-item-content {
  padding: 0 0;
}
.news-header-item .news-header-item-content .categories {
  background-color: var(--primary_color);
  color: #fff;
  padding: 5px 10px;
  font-weight: 800;
}

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

.brur-news-section-title h2 {
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #37423b;
  border-left: 5px solid var(--secondary_color);
  padding-left: 1rem;
}

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

.brur-news-item .media {
  font-size: 16px;
  font-weight: 800;
}
.recent-news {
  background-color: #e9f3fd;
}

.more-news-content p {
  font-size: 12px;
  font-style: italic;
}
.more-news-content h5 {
  font-size: 14px;
  font-weight: 700;
}
/*--------------------------------------------------------------
# News Profile Page end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Faculty Page
--------------------------------------------------------------*/
.sidebar_menu {
  margin-right: 2rem;
}
.sidebar_menu-item {
  border-top: 0.5px solid #ccc;
  font-size: 16px;
  font-weight: 600;
  padding: 4px 0;
}
.sidebar_menu-item.active {
  border-left: 4px solid var(--secondary_color);
}
.sidebar_menu:last-child {
  border-bottom: 0.5px solid #ccc;
}
.sidebar_menu-item:hover {
  background-color: var(--primary_color);
  color: #fff;
}
.sidebar_menu-item a:hover {
  color: #fff;
}
/*--------------------------------------------------------------
# Faculty Page End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Department page
--------------------------------------------------------------*/
/* .post_header{
  width: 51%;
}
.post_header .post_header-img{
  transform: scale(1.2);
  transition: transform 0.5s;
} */
.post_header .post_header-category{
    position: absolute;
    top: 0;
    left: 100%;
    text-transform: uppercase;
    transform: rotate(90deg) translateY(-20px);
    transform-origin: top left;
    color: #9d9d9d;
    font-weight: 800;
}
.post .post_info{
  margin-top: -47px;
  margin-right: -1px;
  position: relative;
  text-align: right;
  z-index: 1;
  overflow: hidden;
  height: auto;
}
.post .post_info .post_info-wrap{
  background-color: #fff;
  display: inline-block;
  max-width: 594px;
  padding: 18px 20px;
  width: 95%;
  text-align: left;
}

.top_spacing{
  margin-top: 0;
}
.post_info-wrap h4{
  font-size: 16px;
  letter-spacing: 1px;
  transition: color .5s;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .top_spacing{
    margin-top: 5rem;
  }
  .post_info-wrap h4{
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .post_info-wrap h4{
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# 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 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 h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--primary_color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: var(--secondary_color);
}

#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;
}
