/* [Master Stylesheet Imenta]*/
/*
Template Name: Imenta
Template Author: imenta
Version: - v2.0.0
*/

/* :: Fonts */
@font-face {
  font-family: IRANSans;
  font-weight: normal;
  font-display: fallback;
  src: url("../../assets/fonts/IRANSANA/IRANSans.ttf");
}

@font-face {
  font-family: IRANSans;
  font-weight: bold;
  font-display: fallback;
  src: url("../../assets/fonts/IRANSANA/IRANSans_Black.ttf");
}

@font-face {
  font-family: IRANSans;
  font-weight: 300;
  font-display: fallback;
  src: url("../../assets/fonts/IRANSANA/IRANSans_Light.ttf");
}
:root {
  --primary: #2D5170;
  --secondary: #FD7468;
  --bg-gray: #F9F9F9;
  --color-text: #595C5F;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@media (prefers-reduced-motion: no-preference){
  :root {
    scroll-behavior: smooth;
  }
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: scrollbar;
}
body {
  direction: rtl;
  font-family: "IRANSans";
}
h1,
h2,
.f-heading {
    font-weight: bold;
    font-size: 2.2rem;
    color: #000;
  }
h3,
h4,
.f-medium {
  font-weight: bold;
  font-size: 1.25rem;
  color: #000;
}
h5,
h6,
.f-light {
  font-weight: 300;
  font-size: 0.813rem;
  color: var(--color-text);
}
p {
  color: var(--color-text);
  font-size: .9rem;
}
a {
  text-decoration: none;
}
.btn {
  transition: all .5s ease-in-out;
  outline: none;
}

.btn:focus {
  outline: none;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  outline: none;
  box-shadow: none
}
.btn-primary {
  color: #fff;
  background: var(--primary);
  border: var(--primary);

}
.btn-primary:hover,
.btn-primary:active {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-secondary {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  background: #fff;
}
.btn-secondary:hover,
.btn-secondary:active {
  background: var(--secondary);
  color: #fff;
  border: #FD7468;
}
.btn-header-secondary {
  background: var(--secondary);
  color: #fff;
  border: #FD7468;
}
.btn-header-secondary:focus,
.btn-header-secondary:hover {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  background: #fff;
}
input[type="tel"]::placeholder, 
input[type="url"]::placeholder, 
input[type="email"]::placeholder, 
input[type="number"]::placeholder {
  text-align: right;
}
/* :: Header */
#header ,
#header-home {
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}
#header {
  box-shadow: 0 2px 5px rgba(224, 221, 221 ,0.8);
}
#header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 10px rgba(192, 192, 191, 0.4);
}
#header-home.header-scrolled {
  background: var(--primary);
  opacity: 0.8;
  padding: 15px 0;
}
#header .logo img,
#header-home .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/* :: Navigation Menu */
/* Desktop Navigation */
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--primary);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i,
.navbar a:focus i {
  font-size: 0.7rem;
  line-height: 0;
  margin-right: 5px;
}

.navbar a:hover::before,
.navbar li:hover > a::before,
.navbar .active::before {
  visibility: visible;
  width: 25px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--secondary);
}
.navbar .getstarted,
.navbar .getstarted:focus {
  text-align: center;
  background: var(--primary);
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 30px;
  font-weight:bold ;
  color: #fff;
  display: none;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--bg-gray);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 5px 10px 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: 0.8rem;
  font-weight: 500;
  text-transform: none;
  color: var(--primary);
}
.navbar .dropdown ul a i {
  font-size: 0.7rem;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--secondary);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.header-profile span {
  border-right: 2px solid #6D7E8D;
  margin-right: 15px;
  font-size: 1.25rem;
  color: var(--primary);
  padding-right: 15px;
}
.header-profile span::before {
  font-size: 1.7rem;
}
/* :: Mobile Navigation */
.mobile-nav-toggle {
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.light {
  color: #fff;
}
@media (max-width: 991px){

  #header .header-module,
  #header-home .header-module {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .header-profile a{
    display: none;
  }

}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--primary);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li > a::before {
  right: 23px;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--primary);
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--secondary);
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  display: block;
}
.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 5px 10px 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: 0.6rem;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--secondary);
}
.navbar-mobile .dropdown > .dropdown-active,
.navbar-mobile .dropdown .dropdown > .dropdown-active {
  display: block;
}

/* :: Hero Section */
.hero {
  width: 100%;
  padding-top: 82px;
  z-index: 99;
}
.hero .hero-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .hero {
    background: url('../../assets/img/hero.jpg')no-repeat top center;
    padding-top: 0;
    position: relative;
    height: 100vh;
  }
  .hero::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    opacity: 0.6;
  }
  .hero-img {
    display: none;
  }
}
.hero .hero-wrapper h1 {
  margin: 0;
  padding: 0 25px;
  line-height: 1.6;
  text-align: justify;
}
.hero .hero-wrapper span {
  margin: 30px 0;
  padding: 0 25px;
  line-height: 1.6;
  text-align: justify;
  color: var(--color-text);
}
.hero .hero-wrapper a.btn {
  width: 150px;
  padding: 15px;
  margin-top: 20px;
}
.hero .hero-img {
  padding: 0;
}
@media (min-width: 991.98px) {
    .facts {
      position: relative;
      margin-top: -50px;
      z-index: 100;
    }
    .fact-border-left {
      position: relative;
    }
    .fact-border-left::before {
      position: absolute;
      content: "";
      width: 1px;
      height: 35px;
      top: 25px;
      right: 100%;
      background: var(--color-text);
    }
    .bg-cards {
      position: relative;
      top: -107px;
      background: #F9F9F9
    }
}
.facts-light {
  background: #fff;
  border-radius: 5px;
}
.facts img {
  margin-left: 8px;
  width: 30px;
}
.facts span {
  color: #000;
  font-weight: bold;
  font-size: .9rem;
  padding: 0 20px;
}
.bg-cards {
    background: #F9F9F9
  }
.card-item {
  color: #fff;
  padding: 30px 50px;
  border-radius: 10px;
}
.card-item.bg-pink {
  background:url('../../assets/img/bg-pink.png') no-repeat ;
  background-size: cover;
  background-color: var(--secondary);
}
.card-item.bg-green {
  background:url('../../assets/img/bg-green.png') no-repeat ;
  background-size: cover;
  background-color: #79D99B;
}
.card-item.bg-blue {
  background:url('../../assets/img/bg-blue.png') no-repeat ;
  background-size: cover;
  /* background: var(--primary); */
}
.card-item img {
  position: relative;
  width: 40px;
  top: -18px;
  right: 30px;
  float: left;
}
.card-item h4 {
  color: #fff;
}
.carousel-pagination {
  text-align: center;
  margin-top: 20px;
}
.card-carousel-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: #fff;
  border: 1px solid #fff;
  margin: 0 4px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(163, 162, 162, 0.667);
  opacity: 1;
  transition: 0.5s;
}
.card-carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary);
  border: var(--secondary);
  width: 12px;
  height: 12px;
  box-shadow: none;
}
.info-section {
  background: url('../../assets/img/bg-left.png') no-repeat left center;

}
.info-section img {
  border-radius: 10px 0 0 10px;
}
.info-section .content {
  padding: 50px 100px 180px;
}
.info-section .content h1 {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 10px 50px 10px 70px;
}
.info-section .content p {
  color: var(--color-text);
  text-align: justify;
  line-height: 1.5;
  margin: 10px 50px 10px 170px;
}
.info-section .content .btn {
  width: 150px;
  padding: 15px;
  margin-top: 20px;
  margin-right: 50px;
}
@media (max-width: 991.98px) {
  .info-section img {
  border-radius: 10px;
}
  .info-section .content {
    padding: 25px;
  }
  .info-section .content p,
  .info-section .content h1,
  .info-section .content .btn {
    margin: 20px;
  }
}
.section-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section-title h3{
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.section-title h3::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 3px;
  right: 50px;
  bottom: 0px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-title h5 {
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
}
.service-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(192, 192, 191, 0.4);
  padding: 50px;
}
.service-item::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  right: 0px;
  bottom: 0px;
  border-radius: 5px;
}
.service-item.border-yellow::before {
  background: #FFC800;
}
.title-yellow {
  color: #FFC800;
}
.service-item.border-blue::before {
  background: #0D3656;
}
.title-blue {
  color: #0D3656;
}
.service-item.border-light-blue::before {
  background: #1283C3;
}
.title-light-blue {
  color: #1283C3;
}
.service-item.border-green::before {
  background: #79D99B;
}
.title-green {
  color: #79D99B;
}
.service-item .service-icon {
  margin-left: 50px;
}
.section-footer {
  display: block;
  margin: 40px auto 10px;
}
.section-footer img {
  width: 20px;
}
.imentaCard-section {
  background: #F9F9F9;
}
.imentaCard-section img {
  border-radius: 10px 0 0 10px;
}
.imentaCard-section .content{
  padding: 50px 100px 180px;
}
.imentaCard-section .content h1 {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 10px 50px 10px 70px;
}
.imentaCard-section .content p {
  color: var(--color-text);
  text-align: justify;
  line-height: 1.8;
  margin: 10px 60px;
}
.imentaCard-section .content .btn {
  width: 150px;
  padding: 15px;
  margin-top: 20px;
  margin-right: 50px;
}
@media (max-width: 991.98px) {
  .imentaCard-section img {
  border-radius: 10px;
}
  .imentaCard-section .content {
    padding: 25px;
  }
  .imentaCard-section .content p,
  .imentaCard-section .content h1,
  .imentaCard-section .content .btn {
    margin: 20px;
  }

}
.testimonial-section .content,
.news-section .content {
  padding: 50px 100px 20px;
}

.testimonial-section .content h1,
.news-section .content h1 {
  font-size: 1.7rem;
  line-height: 1.5;
  margin: 10px 0;
}
.testimonial-section .content p,
.news-section .content p {
  color: var(--color-text);
  text-align: justify;
  line-height: 1.8;
  padding-left: 47px;
}
.testimonial-section .content .btn,
.news-section .content .btn {
  width: 150px;
  padding: 12px 15px;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .testimonial-section .content,
  .news-section .content {
    padding: 50px 10px;
  }
  .testimonial-section .content p,
  .news-section .content p {
    padding-left: 5px;
  }
}
.accordion-button:not(.collapsed) {
  background: #fff;
}
.accordion-button {
  font-family: inherit;
  font-weight: 600;
}
.accordion-button:focus {
  box-shadow: none;
  color: #000 !important;
}
.accordion-item:first-of-type .accordion-button {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.accordion-item {
  border-radius: 0.25rem;
}
.accordion-body {
  padding: 1rem;
  padding-left: 3rem;
}
.accordion-body p {
  padding-left: 50px;
  line-height: 1.8;
}
.accordion-button::after {
  background-image: url('../../assets/img/open-img.png');
}
.accordion-button:not(.collapsed)::after {
  background-image: url('../../assets/img/close-img.png');
}
.news-section {
  background: #F9F9F9;
}
.news-section img {
  display: block;
  margin: 5px auto;
  border-radius: 10px;
}
.clientele-section {
  padding-bottom:50px ;
  background:url('../../assets/img/bg-client.png') no-repeat left center ;
}
.clientele-section .client-img {
  display: block;
  margin: 10px auto;
  text-align: center;
}
.clientele-section .client-img img {
  width: 100px;
  margin: 20px 39px;
}
.clientele-section .content {
  padding: 50px 50px 50px 180px;
  text-align: justify;
  line-height: 1.8;
}
/* .clientele-section .content p {

} */
@media screen and (max-width: 600px) {
  .clientele-section .content {
    padding: 50px 10px;
  }
  .clientele-section .client-img img {
    width: 100px;
    margin: 10px 2px;
}
}
.clientele-section .testimonial-item {
  box-sizing: content-box;
  padding: 30px 20px;
  margin: 40px 30px;
  box-shadow: 0px 0 10px rgba(192, 192, 191, 0.2);
  background: #FCFCFC;
  transition: 0.3s;
}
.clientele-section .testimonial-item .profile img {
  width: 120px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin: 0 auto;
}
.clientele-section .testimonial-item h3 {
  font-size: 16px;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 15px 10px 0;
}
.clientele-section .testimonial-item h4 {
  font-size: 11px;
  font-weight: normal;
  color: var(--color-text);
  margin-bottom: 15px 10px 0;
}
.clientele-section .testimonial-item p {
  font-size: 12px;
  font-style: italic;
  margin: 15px 10px 0;
  text-align: justify;
}
.clientele-section .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clientele-section .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  opacity: 1;
  border: 1px solid #D9D9D9;
}
.clientele-section .swiper-pagination .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}
.clientele-section .swiper-slide {
  opacity: 0.8;
}
.clientele-section .swiper-slide-next .testimonial-item {
  background: #fff;
}
@media (max-width: 1199px) {
  .clientele-section .swiper-slide-active {
    opacity: 1;
  }
  .clientele-section .swiper-pagination {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .clientele-section .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
    background: #fff;
  }
}
.banner-section {
  text-align: center;
  background: #F6F6F6;
  padding: 50px;
}
.banner-section h1 {
  color: var(--primary);
  font-size: 26px;
  margin: 10px;
}
.banner-section .btn {
  width: 150px;
  padding: 12px 15px;
}
.contact-section .section-title {
  padding: 50px;
  font-size: 1.8rem;
  color: var(--primary);
}
.contact-section .contact-box {
  background: url('../../assets/img/bg-right.png') no-repeat top right;
  min-height: 500px;
  background-color: #FFFFFF;
  box-shadow: 1px -2px 25px 5px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  padding: 90px 70px;
}
.contact-section .contact-box .content {
  padding: 0;
}
.contact-section .contact-form {
  background: #fff;
  padding: 10px 0;
}
.contact-section .contact-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  padding: 10px;
  text-align: right;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact-section .contact-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 10px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: .8rem;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-section .contact-form input {
  padding: 10px 15px;
}
.contact-section .contact-form textarea {
  padding: 12px 15px;
}
.contact-section .contact-form button[type=submit] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  width: 100%;
}
.contact-section .contact-form input[type="email"]{
  direction: rtl;
}
.contact-section .info {
  background: url('../../assets/img/contact/bg-contactInfo.png')no-repeat;
  background-size: cover;
  padding: 85px 36px 29px;
  border-radius: 25px;
  min-height: 574px;
  /* width: 500px;   */
}

@media (max-width: 960px) {
  .contact-section .info {
    background: url('../../assets/img/contact/ColorFrame.png');
    background-size: cover;
    padding-top: 142px;
  }
  .contact-section .info .contact-social-link a {
    padding: 10px;
  }
}
.contact-section .info .contact-social-link {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
.contact-section .info .contact-social-link a {
  color: #fff;
  padding: 14px;
  transition: 0.3s;
}
.contact-section .info .contact-social-link a:hover {
  color: var(--secondary);
}
.contact-section .info .contact-social-link a > i {
  font-size: 20px;
}
.contact-section .info .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  padding-left: 100px;
  font-size: .9rem;
}
.contact-section .info .contact-info h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.contact-section .info .contact-info i {
  margin-left: 8px;
}
.contact-section .contact-map iframe{
  width: 100%;
  height: 400px;
  border-radius: 15px;
}
@media only screen and (max-device-width: 480px) {
  .contact-section .contact-box {
    padding: 90px 30px;
  }
  .contact-section .info {
    background: url('../../assets/img/contact/ColorFrame-small.png')no-repeat;
    background-size: cover;
    padding: 150px 20px 90px 30px;
    border-radius: 15px;
    height: 587px;
  }
}
@media (max-width: 960px) {
  .contact-section .info .contact-social-link a {
    padding: 10px;
  }
  .contact-section .info .contact-info h3 {
    margin-bottom: 40px;
  }
  .contact-section .info .contact-info div {
    margin-bottom: 20px;
  }
}
.about-hero {
  margin-top: 82px;
  background: url('../../assets/img/bg-about.png')no-repeat right center;
  background-color: #0D3656;
  background-size: contain;
  min-height: 100vh;
  padding-top: 82px;
  z-index: 99;
}
.about-hero .about-wrapper {
  display: flex;
  padding: 60px 90px;
}
.about-hero .about-wrapper h1{
  margin-bottom: 50px;
  font-size: 2.2rem;
  color: #fff;
}
.about-hero .about-wrapper p {
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: justify;
  color: #fff;
}
.about-hero .about-img {
  padding-left: 0;
}
@media (max-width: 992px) {
  .about-hero {
    padding-top: 10px;
  }
  .about-hero .about-wrapper {
    padding: 20px 40px;
  }
  .about-hero .about-img {
    display: block;
    margin: 10px auto 0;
  }
  .about-hero .about-img img {

    border-radius: 34px;
    padding: 20px;
  }
}
.section-footer a > i {
  color: #fff;
  transition: 0.3s;
}
.section-footer a:hover > i,
.section-footer a:focus > i {
  color: var(--secondary);
}
.login {
  margin-top: 82px;
  z-index: 99;
}
.login .login-wrapper {
  padding: 180px 150px;
}
.login .login-wrapper h4 {
  color: var(--primary);
  font-weight: 500;
}
.login .login-wrapper span {
  color: var(--secondary);
  margin-bottom: 30px;
}
.login .login-wrapper a {
  color: var(--secondary);
}

.login .login-form button[type="submit"] {
  background: var(--primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 100%;
}
.login .login-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  padding: 10px;
  text-align: right;
  margin-bottom: 24px;
  font-weight: 600;
}
.login .login-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: right;
  padding: 10px;
  margin-bottom: 24px;
  font-weight: 600;
}
.login-welcome {
  background: url('../../assets/img/bg-login.png')no-repeat center center;
  background-color: var(--primary);
  background-size: cover;
}
.login-welcome h1 {
  color: #fff;
  text-align: center;
  padding-top: 50%;
}

@media (max-width: 992px) {
  .login .login-wrapper {
    padding: 100px 200px;
  }
  .login-welcome h1  {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .login .login-wrapper {
    padding: 50px 30px;
  }
}

.notfound-section .notfound-box {
  background: url('../../assets/img/bg-left.png') no-repeat center left;
  background-color: #FFFFFF;
  box-shadow: 1px -2px 25px 5px rgba(0, 0, 0, 0.04);
  border-radius: 15px;
  margin-top: 90px;
}

.notfound-section .notfound-box .notfound-content {
  padding: 8rem;
  text-align: left;
  direction:ltr;
}
.notfound-section .notfound-box .notfound-content span {
  color: var(--primary);
  margin-bottom: 2rem;
}
.notfound-section .notfound-box .notfound-content h1 {
  margin: 2rem 0 1rem;
  font-size: 2.5rem;
  text-transform: capitalize;
}
.notfound-section .notfound-box .notfound-content p {
  font-size: .8rem;
  color: var(--color-text);
}
.notfound-section .notfound-box .notfound-content a {
  color: var(--primary);
}
.notfound-section .notfound-box .notfound-content a:hover,
.notfound-section .notfound-box .notfound-content a:focus {
  color: var(--secondary);
} 
@media (max-width: 992px) {
  .notfound-section .notfound-box {
    background: url('../../assets/img/bg-left.png') no-repeat top left;
  }
  .reverse {
    flex-direction: column-reverse;
  }
  .notfound-section .notfound-box .notfound-content h1 {
    font-size: 1.8rem;
  }
  .notfound-section .notfound-box .notfound-img {
    padding: 3rem;
  }
  .notfound-section .notfound-box .notfound-img img{
    width: 100%;
  }
}
@media (max-width: 600px) {
  .notfound-section .notfound-box .notfound-content {
    padding: 2rem;
  }
}
.package-section {
  padding: 100px 0;
  margin: 50px 0 100px;
}
.package-section .package-box{
  display: block;
  background:
    url('../../assets/img/bg-price.png') no-repeat center top,
    linear-gradient(180deg, #0D3656 -17.43%, #555090 123.35%);
  margin: 90px auto 50px;
  background-size: cover;
  padding: 50px 80px;
  border-radius: 8px;
  
}
.package-section .package-box h1 {
  color: #fff;
  font-weight: normal;  
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.package-section .package-box p {
  font-style: normal;
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.2;
  color: #fff;
  opacity: 0.7;
  text-align: center;
}
.package-section .package-box .package-items {
  position: relative;
  top: 100px;
}
.package-section .pricing-item {
  padding: 40px 25px;
  background: url('../../assets/img/bg-left.png')no-repeat left top;
  box-shadow: 0px 4px 17px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: relative;
  border-radius: 5px;
}
.package-section .pricing-item .pricing-most-popular {
  position: absolute;
  top: -20px;
  right: 28%;
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 8px 35px;
  border-radius: 5px;
}
.package-section .pricing-item .pricing-img {
  margin-bottom: 20px;  
}
.pricing-item .package-name {
  display: block;
  color: var(--secondary);
  margin-bottom: 10px;
}
.pricing-item h4 {
  color: #1283C3;
  font-size: 38px;
  line-height: 48px;
}
.pricing-item h4 > span {
  color: var(--color-text);
  font-size: 14px;
  margin-right: 10px;
  font-weight: 400;
}
.package-section ul {
  padding: 5px 0;
  list-style: none;
  color: #000;
  line-height: 20px;
}
.package-section ul li {
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
}
.pricing-item .package-detaile h6 {
  font-size: .7rem;
  color: #000;
  line-height: 1.2;  
}
.pricing-item .package-detaile span {
  font-size: .6rem;
  color: var(--color-text);
  line-height: 1.2;  
}
.pricing-item .package-detaile span:first-child {
  margin-right: 10px;
}

.package-section .pricing-item p {
  color: var(--color-text);
  font-size: .7rem;
  line-height: 1.4;
  text-align: justify;
}
.pricing-item .btn {
  width: 100%;
  background-color: var(--secondary);
  color: #fff;
  padding: 7px;
  font-size: .8rem;
  margin-top: 20px;
}
.pricing-item .btn:hover {
  background-color: #fff;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.package-section .featured {
  z-index: 10;
}

.package-section .featured {
    transform: scale(1.21);
}

@media (max-width: 768px){
  .package-section .featured {
      transform: scale(1.25);
  }
  .package-section .package-box {
    padding: 40px 10px;
  }
  .package-section .package-box h1 {
    font-size: 1.6rem;
  }
  .package-section .package-box .package-items {
    top: 120px;
  }
  .package-section .pricing-item .pricing-most-popular {
    right: 21%;
    padding: 5px 20px;
    line-height: 1.8;
  }
  .package-section .pricing-item .pricing-img img {
    max-width: 100px;
  }
  .pricing-item .package-name {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }
  .pricing-item h4 {
    font-size: 22px;
    line-height: 1.5;
  }
  .package-section .pricing-item {
    padding: 20px 8px;
  }
  .package-section ul {
    padding: 0;
  }
  .package-section ul li {
    padding: 4px 0;
  }
  .pricing-item .package-detaile h6 {
    font-size: .6rem;
  }
  .pricing-item .package-detaile span {
    font-size: 7px;
  }
  .package-section .pricing-item p {
    font-size: .6rem;
    margin-bottom: 10px;
  }
  .pricing-item .btn {
    font-size: .7rem;
    margin-top: 10px;
  }
}
@media (max-width: 481px) {
  .package-section {
    margin: 0;
  }
  .package-section .package-box{
    display: block;
    background:linear-gradient(180deg, #0D3656 -17.43%, #555090 123.35%);
    margin: 0 auto;
    padding: 20px;    
    //height: 720px;
  }
  .package-section .package-box h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .package-section .package-box p {
    font-size: 17px;
    line-height: 25px;
  }
  .package-section .package-box .package-items {
    top: 70px;
  }
  .package-items {
    position: absolute;
  }
  .package-items .package-item-show-mobile__1 {
    position: relative;
    top: -453px;
    z-index: 100;
    transform: scale(1);
  }
  .package-items .package-item-show-mobile__2 {
    position: relative;
    top: 0px;
    z-index: 99;
    transform: scale(0.94);
  }
  .package-items .package-item-show-mobile__2:hover,
  .package-items .package-item-show-mobile__2:focus {
    transform: scale(1);
    z-index: 101;
  }
  .package-items .package-item-show-mobile__3:hover,
  .package-items .package-item-show-mobile__3:focus {
    transform: scale(1);
    z-index: 101;
  }
  .package-items .package-item-show-mobile__3 {
    position: relative;
    top: -788px;
    z-index: 98;
    transform: scale(0.89);
  }
  .package-section .pricing-item .pricing-most-popular {
    right: 33%;
  }
  .package-section .featured {
    transform: scale(1);
  }
  .pricing-item h4 {
    font-size: 32px;
    line-height: 1.5;
  }
  .package-section .pricing-item {
    min-height: 410px;
    padding: 20px 15px;
    box-shadow: 0px 4px 17px 15px rgb(0 0 0 / 25%);
  }
  .pricing-item .package-name {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .pricing-item .package-detaile h6 {
    font-size: 14px;
  }
  .pricing-item .package-detaile span {
    font-size: 12px;
  }
  .package-section .pricing-item p {
    font-size: 13px;
    line-height: 19px;
    margin-bottom: 10px;
  }

}
.banner {
  background: #F6F6F6;
  border-radius: 8px; 
  padding: 80px 50px;
}
.banner img {
  border-radius: 3px;
}
.banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 10px;
}
.banner .banner-content h2 {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.banner .banner-content p {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 40px;
}
.banner .banner-content .btn {
  width: 180px;
  padding: 10px;
}
@media (max-width: 768px){
  .banner {
    padding: 30px 20px;    
  }
  .banner .banner-content h2 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .banner .banner-content p {
    font-size: .8rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .banner .banner-content .banner-btn {
    flex-direction: row;
    align-items: center;
  }
  .banner .banner-content .banner-btn .btn {
    width: 150px;
    padding: 12px 15px;
  }
  .banner .banner-content .banner-btn .btn:last-child{
    margin-right: 5px;
  }
}

@media (max-width: 481px) {
  .banner {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 auto;
  }
.banner .banner-content {
    padding: 25px 15px;
  }
  
  .banner .banner-content .banner-btn {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .banner .banner-content .banner-btn .btn {
    width: 100%;
    padding: 12px 35px;
  }
  .banner .banner-content .banner-btn .btn:last-child{
    margin-top: 10px;
  }
  
}
.color-blue {
  color: #005686;
}
.color-yellow {
  color: #FFC800;
}
.blog-section {
  margin-top: 90px;
  padding: 80px 0 50px;
  background: conic-gradient(#fff 0deg 90deg, #434749 90deg 270deg, #fff 270deg);
}
@media (max-width: 481px) {
  .blog-section {
    background: #fff;
  }
  .bg-post-mobile {
    background: conic-gradient(#fff 0deg 90deg, #434749 90deg 270deg, #fff 270deg);
    padding: 0 20px;
  }
}
.blog .posts-list article {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.blog .posts-list .border-blue {
  border-bottom: 8px solid #1283C3;;
}
.blog .posts-list .border-yellow {
  border-bottom: 8px solid #FFC800;
}
.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  border-radius: 8px;
}
.blog .posts-list h2 {
  margin-bottom: 30px;
}
.blog .posts-list h2.title a {
  font-size: 22px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .posts-list .subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: justify;
  padding: 0;
  color: #595C5F;
  margin: 0 0 20px 0;
}
.blog .posts-list .des {
  font-size: 14px;
  text-align: justify;
  line-height: 18px;
  color: #898585;  
  margin: 0 0 20px 0;
}
/* footer */
.footer {
  background: #fff;
  padding: 0;
  font-size: 12px;
  color: var(--color-text);
}
.footer-pages {
  background: var(--bg-gray);
}
.footer .footer-top {
  border-top: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
  padding: 60px 0 30px 0;
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
  padding: 0 60px;
}
.footer .footer-top .footer-info p {
  font-size: 0.8rem;
  line-height: 26px;
}
.footer .footer-info .footer-address img {
  width: 18px;
}
.footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  line-height: 0;
  margin-left: 10px;
  transition: 0.5s;
}
.footer .footer-top .social-links a > img {
  width: 18px;
}
.footer .footer-top .social-links a:hover > img {
  transform: scale(1.2);
}
.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary);
  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 {
  padding-left: 2px;
  color: #d0d4fc;
  font-size: 11px;
  line-height: 0;
}
.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: #595C5F;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-top .footer-links ul a:hover {
  color: var(--secondary);
}
@media (max-width: 992px) {
  .footer-certificates  {
    text-align: center;
  }
}
.footer-certificates img {
  width: 122px;
  height: 130px;
  padding: 20px 15px;
  border: 1px solid #898585;
  border-radius: 5px;
}
.bg-copyright {
  background: #F6F6F6;
}
.bg-copyright-pages {
  background: #FFF;
}
.footer .copyright {
  text-align: center;
  padding: 15px 0;
  color: #898585;
}
