*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

ul {
  list-style-type: none;
}

.navbar {
  box-shadow: 0 2px 8px 2px rgba(67, 91, 140, 0.1);
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 999;
  background-color: #fff;
}
.navbar .navbar-brand {
  max-width: 170px;
}
.navbar .navbar-brand img {
  width: 100%;
}
.navbar .mobile_trigger .search {
  display: none;
  font-size: 18px;
  color: #435B8C;
}
.navbar .mobile_trigger .signup {
  display: none;
  margin: 0 8px;
  background: #FABB00;
  color: #fff;
  font-size: 14px;
  width: 85px;
  padding: 5px 0;
  text-align: center;
  border-radius: 4px;
}
.navbar .mobile_trigger .user {
  display: none;
}
.navbar .mobile_trigger .user .dropdown-toggle {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 10px;
}
.navbar .mobile_trigger .user .dropdown-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar .mobile_trigger .user .dropdown-toggle::after {
  display: none;
}
.navbar .mobile_trigger .user .dropdown-menu {
  right: 0;
  left: auto;
}
.navbar .navbar-toggler {
  color: #435B8C;
  border: 2px solid #435B8C;
  padding-bottom: 1px;
  outline: 0;
}
.navbar ul {
  display: flex;
  align-items: center;
}
.navbar ul li a {
  color: #999999;
  font-size: 14px;
  font-weight: 700;
}
.navbar ul li .search {
  margin-left: 10px;
  font-size: 18px;
}
.navbar ul li .signup {
  margin-left: 20px;
  background: #FABB00;
  color: #fff;
  width: 85px;
  padding: 5px 0;
  text-align: center;
  border-radius: 4px;
}
.navbar ul li .user {
  width: 30px;
  height: 30px;
  padding: 0 !important;
  margin-left: 10px;
  display: block;
}
.navbar ul li .user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar ul li .active {
  color: #435B8C;
}

.user.dropdown-toggle::after {
  display: none;
}

@media screen and (max-width: 992px) {
  nav ul {
    align-items: flex-start !important;
  }
  nav ul li .search, nav ul li .signup, nav ul li .user {
    display: none;
  }
  nav .mobile_trigger {
    display: flex;
    align-items: center;
  }
  nav .mobile_trigger .search, nav .mobile_trigger .signup, nav .mobile_trigger .user {
    display: block !important;
  }
}
@media screen and (max-width: 576px) {
  .navbar-brand {
    max-width: 100px !important;
  }
}
#searchModal .modal-body {
  padding: 2rem 1rem 1rem;
}
#searchModal .modal-body .close {
  position: absolute;
  right: 4px;
  top: 0;
  outline: 0;
}
#searchModal .modal-body form input {
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  font-size: 13px;
  padding: 0 10px;
  border: 1px solid #435B8C;
  border-radius: 4px;
  outline: 0;
}
#searchModal .modal-body form button {
  width: 80px;
  height: 30px;
  background: #435B8C;
  color: #fff;
  border: 1px solid #435B8C;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  display: block;
  margin: 0 auto;
}

#signupModal .modal-body, #signinModal .modal-body {
  padding: 2rem 1rem;
  text-align: center;
}
#signupModal .modal-body .close, #signinModal .modal-body .close {
  position: absolute;
  right: 10px;
  top: 10px;
  outline: 0;
  color: #435B8C;
  border: 1px solid #435B8C;
  width: 20px;
  height: 20px;
  font-size: 16px;
  border-radius: 50%;
}
#signupModal .modal-body h4, #signinModal .modal-body h4 {
  font-family: "Archivo Black", sans-serif;
  border-bottom: 1px solid rgba(67, 91, 140, 0.3);
  max-width: 400px;
  width: 100%;
  margin: 0 auto 30px;
  padding-bottom: 20px;
}
#signupModal .modal-body form, #signinModal .modal-body form {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
#signupModal .modal-body form .social_input, #signinModal .modal-body form .social_input {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 5px 2px rgba(67, 91, 140, 0.1);
  font-size: 14px;
  color: #435B8C;
  text-decoration: none;
}
#signupModal .modal-body form .social_input img, #signinModal .modal-body form .social_input img {
  width: 20px;
  margin-right: 4px;
  margin-top: -2px;
}
#signupModal .modal-body form input, #signinModal .modal-body form input {
  width: 100%;
  height: 30px;
  margin-bottom: 10px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 2px 5px 2px rgba(67, 91, 140, 0.1);
  font-size: 12px;
  outline: 0;
  padding: 0 15px;
  color: rgba(67, 91, 140, 0.6);
}
#signupModal .modal-body form input::placeholder, #signinModal .modal-body form input::placeholder {
  color: rgba(67, 91, 140, 0.3);
}
#signupModal .modal-body form button, #signinModal .modal-body form button {
  display: inline-block;
  padding: 5px 20px;
  font-size: 13px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: #FABB00;
  color: #fff;
  margin: 10px 0;
}
#signupModal .modal-body span, #signinModal .modal-body span {
  display: block;
  font-size: 14px;
  color: #435B8C;
}
#signupModal .modal-body span a, #signinModal .modal-body span a {
  color: #FABB00;
  font-weight: 700;
  text-decoration: none;
}
#signupModal .modal-body .forgot, #signinModal .modal-body .forgot {
  color: #999999;
  text-decoration: none;
  border-bottom: 1px solid #999999;
  padding-bottom: 3px;
  font-size: 12px;
}

.mofet_body {
  padding: 120px 0 20px;
  background: #fff;
}
.mofet_body .search_area {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}
.mofet_body .search_area i {
  position: absolute;
  top: 0;
  left: 8px;
  font-size: 28px;
  color: #FABB00;
}
.mofet_body .search_area input {
  width: 100%;
  height: 40px;
  border: 1px solid #435B8C;
  border-radius: 4px;
  outline: 0;
  font-size: 14px;
  padding: 0 10px 0 35px;
}
.mofet_body .item {
  box-shadow: -1px 5px 10px 2px rgba(153, 153, 153, 0.3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}
.mofet_body .item .image {
  height: 200px;
  width: 100%;
}
.mofet_body .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mofet_body .item .content {
  padding: 20px;
}
.mofet_body .item .content h3 {
  margin-bottom: 20px;
  height: 65px;
  overflow: hidden;
}
.mofet_body .item .content h3 a {
  color: #435B8C;
  font-weight: 700;
  text-decoration: none;
}
.mofet_body .item .content p {
  font-family: "Amiri", serif;
  color: #435B8C;
  font-size: 15px;
  height: 62px;
  overflow: hidden;
}
.mofet_body .item .content .button {
  display: inline-block;
  padding: 3px 10px 2px;
  background: #FABB00;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 5px;
}
.mofet_body .blog_read h1 {
  color: #435B8C;
  margin-bottom: 20px;
  font-weight: 700;
}
.mofet_body .blog_read h2 {
  color: #435B8C;
  margin-bottom: 20px;
  font-weight: 700;
}
.mofet_body .blog_read h3 {
  color: #435B8C;
  margin-bottom: 20px;
  font-weight: 700;
}
.mofet_body .blog_read h4 {
  color: #435B8C;
  margin-bottom: 20px;
  font-weight: 700;
}
.mofet_body .blog_read img {
  width: 100%;
  margin-bottom: 30px;
}
.mofet_body .blog_read iframe {
  width: 100%;
  margin-bottom: 30px;
}
.mofet_body .blog_read p {
  font-family: "Amiri", serif;
/*  color: #435B8C;*/
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}
.mofet_body .blog_read p a {
  color: #FABB00;
  font-weight: 700;
}
.mofet_body .blog_read a {
  color: #000;
  font-weight: 700;
}
.mofet_body .blog_read ul {
  padding-left: 50px;
}
.mofet_body .blog_read ul li {
  list-style-type: circle;
  margin-bottom: 10px;
}

.pagination .page-item .page-link {
  color: #FABB00;
  border-color: #FABB00;
  margin: 2px;
  border-radius: 4px;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}
.pagination .active .page-link {
  color: #fff;
  background: #FABB00;
}

footer {
  background: #435B8C;
}
footer .footer_top {
  padding: 80px 0 50px;
}
footer .footer_top .left {
  text-align: center;
}
footer .footer_top .left h5 {
  color: #fff;
  padding-top: 10px;
}
footer .footer_top .left form {
  position: relative;
  margin: 15px 0 2px;
}
footer .footer_top .left form input {
  display: block;
  width: 100%;
  height: 30px;
  font-size: 12px;
  padding: 0 90px 0 10px;
  border: 0;
  outline: 0;
  color: rgba(67, 91, 140, 0.6);
  border-radius: 4px;
}
footer .footer_top .left form input::placeholder {
  color: rgba(67, 91, 140, 0.3);
}
footer .footer_top .left form button {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 80px;
  height: 30px;
  line-height: 30px;
  border: 0;
  outline: 0;
  cursor: pointer;
  background: #FABB00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
footer .footer_top .left .social li {
  display: inline-block;
  margin: 2px;
}
footer .footer_top .left .social li a img {
  width: 16px;
}
footer .footer_top .right h6 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
footer .footer_top .right ul li a {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}
footer .bottom_footer {
  padding: 30px 0;
  background: #fff;
  border-top: 2px solid #435B8C;
}
footer .bottom_footer .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .bottom_footer .content span {
  display: block;
  text-align: left;
  color: #999999;
  font-size: 13px;
}
footer .bottom_footer .content ul {
  margin: 0;
}
footer .bottom_footer .content ul li {
  display: inline-block;
  padding-right: 6px;
  position: relative;
}
footer .bottom_footer .content ul li::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  height: 13px;
  width: 2px;
  display: block;
  background: #999999;
}
footer .bottom_footer .content ul li:last-child::after {
  display: none;
}
footer .bottom_footer .content ul li a {
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  transition: all 0.2s;
}
footer .bottom_footer .content ul li a:hover {
  color: #222;
}


.blog_post_section blockquote {
  display: block;
  padding-left: 20px;
  border-left: 6px solid #df0d32;
  margin-left: -15px;
  padding-left: 15px;
  font-style: italic;
  color: #555;
}
/*# sourceMappingURL=master.css.map */
