:root {
  --blue: #006390;
  --blue-2: #72b9d9;
  --blue-dark: #032e42;
  --blue-light: #f7fafc;
  --white: #ffffff;
  --light: #f9f9f9;
  --black: #292d34;
  --primary: #8f0e1f;
  --primary-light: #b05662;
  --primary-dark: #720b18;
  --primary-darker: #550812;
  --green: #66c672;
  --card-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.05);
  --animation-all: all 0.3s ease-in-out;
}

body {
  overflow-x: hidden;
}

/* Button Bootstrap */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary {
  background-color: var(--blue);
  border-color: var(--blue);
}

.btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-check:checked + .btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
  background-color: var(--primary-darker);
  border-color: var(--primary-darker);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:active {
  background-color: var(--primary-darker) !important;
  border-color: var(--primary-darker) !important;
}

.btn-light {
  color: var(--primary);
  border-color: var(--white);
  background-color: var(--white);
}
.btn-light:hover {
  color: var(--white);
}

.btn-outline-light:hover {
  color: var(--white);
}

.btn-outline-secondary {
  color: var(--blue);
  border-color: var(--blue);
  background-color: var(--white);
}
.btn-outline-secondary:hover {
  color: var(--white);
  border-color: var(--blue);
  background-color: var(--blue);
}
.btn-outline-secondary:active {
  border-color: var(--blue-dark) !important;
  background-color: var(--blue-dark) !important;
}

.ff-primary {
  font-family: "Amaranth", "Arvo", serif;
}

/* Text Color Bootstrap */
.text-primary {
  color: var(--primary) !important;
}

.text-blue {
  color: var(--blue);
}

.text-blue-dark {
  color: var(--blue-dark);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-blue {
  background-color: var(--blue);
}

.bg-blue-2 {
  background-color: var(--blue-2);
}

.bg-green {
  background-color: var(--green);
}

.bg-light-gray {
  background: var(--light);
}

.bg-light-blue {
  background: var(--blue-light);
}

.bg-blue-3 {
  background: rgba(0, 99, 144, 0.3);
}

.bg-gradiant-blue {
  background: linear-gradient(35deg, rgb(48, 70, 105), var(--blue));
}

.bg-gradiant-red {
  background: linear-gradient(35deg, var(--primary), var(--primary-dark));
}

.navbar {
  z-index: 999;
}
.navbar .navbar-toggler {
  height: 40px;
  width: 40px;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
  background-image: none;
}
.navbar .navbar-toggler .navbar-toggler-icon span {
  height: 2px;
  background-color: #f7fafc;
  transition: var(--animation-all);
}
.navbar .navbar-toggler .navbar-toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translate(13px, 6px);
}
.navbar .navbar-toggler .navbar-toggler-icon span:nth-child(2) {
  display: none;
}
.navbar .navbar-toggler .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, 0px);
}
.navbar .navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(1) {
  transform: rotate(0);
}
.navbar .navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(2) {
  display: block;
}
.navbar .navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(0);
}
.navbar .navbar-collapse.show .nav-link {
  padding: 0.5rem 1rem;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(0, 99, 144, 0.25);
}

.swal2-popup .swal2-close {
  outline: none;
}
.swal2-popup .swal2-close:focus {
  box-shadow: none;
}

/**
 * ----------------------------------------
 * animation vibrate-1
 * ----------------------------------------
 */
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-4px, 4px);
  }
  40% {
    transform: translate(-4px, -4px);
  }
  60% {
    transform: translate(4px, 4px);
  }
  80% {
    transform: translate(4px, -4px);
  }
  100% {
    transform: translate(0);
  }
}
button {
  position: relative;
  overflow: hidden;
  transition: background 400ms;
}

button .ripple {
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  z-index: 999999999999;
}
.loading img {
  height: 30px;
  margin-top: 5rem;
}

.loader {
  border: 5px solid #f3f3f3; /* Light grey */
  border-top: 5px solid var(--primary); /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* sections */
.sec-padding {
  padding: 100px 0 60px;
}

section[class^=section-] {
  overflow-x: hidden;
}

.title-section h1 {
  color: var(--blue);
  font-size: 40px;
  text-align: center;
  font-family: "Amaranth", "Arvo", system-ui, serif;
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}
.title-section h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  transform: translate(50%, 15px);
}

/* Start Main Header */
header#navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(35deg, rgb(143, 14, 31), rgb(48, 70, 105));
  transition: var(--animation-all);
  z-index: 9999;
}
header#navbar .navbar .nav-link {
  color: var(--white);
}
header#navbar .change-lang .nav-item .nav-link {
  color: var(--white) !important;
}
header#navbar .change-lang .nav-item .nav-link img {
  height: 20px;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  position: relative;
  top: -2px;
}
header#navbar .change-lang .nav-item .dropdown-menu {
  min-width: auto;
}
header#navbar .change-lang .nav-item .dropdown-item img {
  height: 20px;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
}
header#navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: var(--card-shadow);
}
.main-section-header {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  /* align-items: flex-end; */
  position: relative;
  padding-top: 60px;
  padding-bottom: 10px;
  overflow: hidden;
  transition: var(--animation-all);
}
.main-section-header::after {
  content: "";
  height: 850px;
  width: 1000px;
  display: block;
  position: absolute;
  top: -250px;
  right: -400px;
  background-image: url(../images/header-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -2;
}
.main-section-header h1 {
  font-size: 56px;
}
.main-section-header p {
  font-size: 20px;
}
.main-section-header .content {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-section-header .content .btn {
  min-width: 150px;
}

.photo-header {
  position: relative;
}
.photo-header::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 100%;
  right: -150px;
  top: 0;
  background-image: url(../images/shoutout-header.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;
}

/* OWL Slider  */
.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.owl-carousel .owl-item {
  opacity: 0.5;
}
.owl-carousel .owl-item.active {
  opacity: 1;
}
.owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 2rem;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-size: 36px;
  color: var(--white);
  border-radius: 4rem;
  background-color: var(--primary);
  margin: 0 1rem;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
  position: relative;
  top: -5px;
}
.owl-carousel .owl-dots {
  display: inline-flex;
  position: relative;
  top: -40px;
  align-items: center;
}
.owl-carousel .owl-dot {
  background-color: var(--primary-light) !important;
  width: 10px;
  height: 10px;
  display: block;
  margin: 0 10px;
  border-radius: 1rem;
}
.owl-carousel .owl-dot.active {
  background-color: var(--primary) !important;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px rgba(143, 14, 31, 0.2);
}

/* start Benefit Section  */
.section-benefit .card {
  height: 240px;
  border: none;
  box-shadow: var(--card-shadow);
}
.section-benefit .card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: none;
  background: transparent;
  padding: 1.5rem 1.5rem 0;
}
.section-benefit .card-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background-color: rgba(143, 14, 31, 0.1);
  border-radius: 6px;
}
.section-benefit .card-header .icon img {
  width: 36px;
}
.section-benefit .card-header h4 {
  width: calc(100% - 60px - 2rem);
  margin: 0 1rem;
  font-size: 20px;
  color: var(--black);
}
.section-benefit .card-body {
  padding: 1rem 1.5rem 1.5rem;
}
.section-benefit .card-body p {
  color: var(--blue-dark);
  margin-bottom: 0;
}

/* end Benefit Section  */
/* Start Section Steps Engage  */
.section-steps-engage .nav {
  justify-content: center;
}
.section-steps-engage .card {
  width: 200px;
  height: 120px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  border: 2px solid rgba(0, 99, 144, 0.3);
  border-radius: 16px;
}
.section-steps-engage .card.active {
  border: 2px solid rgba(143, 14, 31, 0.7);
  box-shadow: 0px 0 0px 5px rgba(143, 14, 31, 0.1);
}
.section-steps-engage .card.active span {
  background-color: rgba(143, 14, 31, 0.2);
  color: var(--primary);
}
.section-steps-engage .card.active h5 {
  color: var(--primary) !important;
}
.section-steps-engage .card span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0.5rem;
  background-color: rgba(0, 99, 144, 0.2);
  color: var(--blue);
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
}
.section-steps-engage .card .card-body {
  padding: 16px 20px;
}
.section-steps-engage .card .card-body h5 {
  font-size: 18px;
  color: var(--blue);
  margin: 0;
}
.section-steps-engage .tab-content {
  padding-top: 3rem;
}
.section-steps-engage .tab-content .tab-pane .steps-media {
  position: relative;
}
.section-steps-engage .tab-content .tab-pane .steps-media::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-color: rgba(0, 99, 144, 0.1);
  border-radius: 70% 30% 64% 36%/44% 22% 78% 56%;
  z-index: -1;
  animation: vibrate 7s linear infinite reverse both;
}
.section-steps-engage .tab-content .tab-pane .steps-media img {
  width: 100%;
}
.section-steps-engage .tab-content .tab-pane .steps-media video {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 24px 35px rgba(32, 37, 45, 0.1);
}
.section-steps-engage .tab-content .tab-pane .content {
  max-width: 500px;
}
.section-steps-engage .tab-content .tab-pane .content h3 {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary);
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.section-steps-engage .tab-content .tab-pane .content ul li {
  font-size: 18px;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}
.section-steps-engage .list {
  list-style: none;
  margin: 1.5rem 0;
}
.section-steps-engage .list li {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
  position: relative;
}
.section-steps-engage .list li::after {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  width: 8px;
  height: 8px;
  background-color: var(--blue);
  border-radius: 1rem;
  transform: translate(0, 10px);
  box-shadow: 0 0 0 3px rgba(0, 99, 144, 0.1);
}

/* Start Section features*/
.section-features {
  background-color: var(--blue);
}
.section-features .title-section h1 {
  color: var(--white);
}
.section-features .title-section h1::after {
  background-color: var(--blue-light);
  opacity: 0.7;
}
.section-features .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.section-features .owl-carousel .owl-item {
  opacity: 1;
}
.section-features .owl-carousel .owl-item.active {
  opacity: 1;
}
.section-features .owl-carousel .owl-nav button.owl-next,
.section-features .owl-carousel .owl-nav button.owl-prev {
  background-color: var(--blue-light);
  color: var(--blue);
}
.section-features .owl-carousel button.owl-dot {
  background-color: var(--blue-light) !important;
}
.section-features .owl-carousel button.owl-dot.active {
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}
.section-features .card {
  width: 520px;
  height: 290px;
  position: relative;
  border: transparent;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.section-features .card .card-body {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: var(--white);
  padding: 1rem 1.75rem;
  transition: var(--animation-all);
  min-height: 150px;
}
.section-features .card .card-body .title {
  font-size: 20px;
  color: var(--blue-dark);
  padding: 0.5rem 0 0;
  transition: var(--animation-all);
}
.section-features .card .card-body p {
  font-size: 16px;
  margin-bottom: 0.5rem;
  transition: var(--animation-all);
}

/* End Section features*/
/* Start Section types information */
.section-types-information .photo {
  max-width: 350px;
  display: flex;
  justify-content: center;
}
.section-types-information .photo img {
  max-height: 100%;
}
.section-types-information .list {
  list-style: none;
  margin: 1.5rem 0;
}
.section-types-information .list li {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 0.25rem;
  position: relative;
}
.section-types-information .list li::after {
  content: "";
  display: block;
  position: absolute;
  left: -20px;
  top: 52%;
  width: 8px;
  height: 8px;
  background-color: var(--blue);
  border-radius: 1rem;
  transform: translate(0, -50%);
  box-shadow: 0 0 0 3px rgba(0, 99, 144, 0.1);
}
.section-types-information .uses-list {
  list-style: none;
}
.section-types-information .uses-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 18px;
  font-weight: 600;
}
.section-types-information .uses-list li img {
  width: 50px;
  padding: 10px;
  background-color: rgba(0, 99, 144, 0.1);
  border-radius: 6px;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

/* End Section types information */
/* Start Section Contact US */
/* End Section Contact US */
/* Start Section Plane Price*/
.section-plane-price .plans {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.section-plane-price .plans li {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid var(--blue-2);
}
.section-plane-price .plans li:first-child {
  border-left: 0px;
}
.section-plane-price .plans li .tag-price {
  font-size: 14px;
  color: var(--white);
  text-transform: capitalize;
  padding: 3px 10px 5px;
  border-radius: 1rem;
  text-align: center;
  min-width: 120px;
  margin-bottom: 1rem;
}
.section-plane-price .plans li .price {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: var(--black);
}
.section-plane-price .plans li .price .sign {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-2);
  position: relative;
  top: 30px;
}
.section-plane-price .plans li .price .number {
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 80px;
  font-weight: bolder;
}
.section-plane-price .plans li .disc {
  width: 70%;
  text-align: center;
  font-size: 12px;
  color: #555;
}
.section-plane-price button.btn {
  border-radius: 6px;
}
.section-plane-price #result, .section-plane-price #sarresult{
  font-size: 45px;
  font-weight: bold;
}
.section-plane-price #totalresult, .section-plane-price #totalsarresult{
  font-size: 45px;
  font-weight: bold;
}
.section-plane-price .form-contacs #letsTalk {
  cursor: pointer;
}
.section-plane-price .form-contacs #letsTalk:hover {
  color: var(--primary);
}

/* End Section Plane Price*/
.section-for-free {
  padding: 15px 0;
}

/* Start main Footer */
footer {
  padding: 60px 0 30px;
  border-top: 2px solid rgba(0, 99, 144, 0.4);
}

.footer-brand {
    padding: 20px;
    border-radius: 5px;
    background: linear-gradient(35deg, rgb(143, 14, 31), rgb(48, 70, 105));

}

.footer-widget{ margin: -17px 0;}

.contact-widget h4 {
   color: var(--blue);
}

footer h4{    
  color: var(--blue)
}

.contact-widget span{
    font-weight: 700;
    color: var(--blue);
}

footer .logo {
  height: 30px;
  margin-bottom: 1rem;
}
footer .logo img {
  height: 100%;
}
footer form .form-control {
  border-color: var(--blue-2);
}
footer form button.btn {
  position: relative;
  left: -4px;
  min-width: 120px;
  border-radius: 5px !important;
}
footer .social {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding: 0;
}
footer .social li {
  font-size: 24px;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
footer .social li a {
  color: var(--blue-dark);
  text-decoration: none;
}
footer .copy-right {
  font-size: 14px;
}
footer .privacy a {
  color: var(--blue);
  text-decoration: none;
  opacity: 0.7;
  transition: var(--animation-all);
}
footer .privacy a:hover {
  opacity: 1;
}

/* End main Footer */
@media only screen and (max-width: 600px) {
  .sec-padding {
    padding: 60px 0 40px;
  }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    margin: 0 0.5rem;
  }
  .owl-carousel .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
  .title-section h1 {
    font-size: 28px;
    margin-bottom: 3rem;
  }
  .main-section-header::after {
    height: 700px;
    width: 700px;
    top: -320px;
  }
  .main-section-header h1 {
    font-size: 34px !important;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  }
  .main-section-header p {
    font-size: 14px;
  }
  .main-section-header .photo-header::after {
    width: 130px;
    height: 70%;
    right: -60px;
  }
  .main-section-header .content {
    padding-top: 0px;
    padding-bottom: 30px;
    height: auto;
  }
  .main-section-header .content .btn {
    min-width: auto;
  }
  .section-benefit .card {
    height: 280px;
  }
  .section-steps-engage .card {
    height: auto;
    width: 120px;
    -webkit-margin-end: 2px;
            margin-inline-end: 2px;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }
  .section-steps-engage .card span {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
  .section-steps-engage .card .card-body {
    padding: 8px 5px;
  }
  .section-steps-engage .card .card-body h5 {
    font-size: 14px;
  }
  .section-steps-engage .tab-content {
    padding: 0;
  }
  .section-steps-engage .tab-content .tab-pane .content h3 {
    font-size: 28px;
  }
  .section-steps-engage .tab-content .tab-pane .content ul li {
    font-size: 16px;
  }
  .section-steps-engage .tab-content .steps-media {
    margin: 1.5rem 1rem;
  }
  .section-features .card {
    width: 300px;
  }
  .section-features .card .card-body {
    padding: 1rem;
  }
  .section-types-information .photo {
    height: 200px;
  }
  .section-plane-price .plans {
    flex-direction: column;
  }
  .section-plane-price .plans li {
    border-top: 1px solid var(--blue-2);
    border-left: none;
    padding: 1rem 0;
  }
  .section-plane-price .plans li:first-child {
    border-top: 0;
  }
  .section-plane-price .plans li .price .number {
    font-size: 45px;
  }
  .section-plane-price .plans li .price .sign {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1376px) {
  .main-section-header h1 {
    font-size: 46px;
  }
  .main-section-header p {
    font-size: 16px;
  }
}
.legal-page {
  margin-top: calc(10vh + 3rem);
}
.legal-page .nav {
  margin-top: 3rem;
  position: sticky;
  top: 100px;
}
.legal-page .nav .nav-link {
  color: var(--black);
  text-align: start;
  margin-bottom: 3px;
}
.legal-page .nav .nav-link.active {
  background-color: var(--black) !important;
  color: var(--white);
}
.legal-page .nav .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.not-fount-page {
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.not-fount-page h1 {
  font-size: 8em;
  font-weight: bold;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2), 8px 8px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
  letter-spacing: 20px;
  color: #622943;
}

main {
  min-height: calc(100vh - 80px);
  padding-top: 61px;
}
main .breadcrumb .breadcrumb-item.active {
  color: #909090;
}
main .breadcrumb .breadcrumb-item a {
  color: #555;
}
main .breadcrumb .breadcrumb-item a:hover {
  color: var(--blue);
}
main .heading {
  background: #f1f1f1;
}
main .blogs-list {
  margin-top: -3rem;
}
main .blogs-list .image-card {
  margin-bottom: 2rem;
}
main .blogs-list .image-card .image {
  height: 200px;
  margin-bottom: 15px;
  border-radius: 0.25rem;
  overflow: hidden;
}
main .blogs-list .image-card .image a img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
main .blogs-list .image-card .image a img:hover {
  transform: scale(1.05);
}
main .blogs-list .image-card .date {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}
main .blogs-list .image-card .date span {
  font-size: 13px;
  color: gray;
}
main .blogs-list .image-card .title {
  margin-bottom: 15px;
  margin-top: 0;
  line-height: 1;
}
main .blogs-list .image-card .title a {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
main .blogs-list .image-card .title a:hover {
  color: var(--blue);
}
main .blogs-list .image-card .content {
  margin-bottom: 13px;
}
main .blogs-list .image-card .content p {
  margin: 0;
}
main .blogs-details {
  margin-top: -3rem;
}
main .blogs-details .blog .blog-img {
  border-radius: 0.25rem;
  max-height: 500px;
  overflow: hidden;
}
main .blogs-details .blog .date {
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}
main .blogs-details .blog .date span {
  font-size: 13px;
  color: gray;
}

html[dir=rtl] .main-section-header p {
  font-size: 16px;
}
html[dir=rtl] .main-section-header::after {
  right: auto;
  left: -400px;
  transform: scaleX(-1);
}
html[dir=rtl] .main-section-header .photo-header::after {
  right: auto;
  left: -220px;
  transform: scaleX(-1);
}
html[dir=rtl] .owl-carousel .owl-nav {
  flex-direction: row-reverse;
}
html[dir=rtl] .owl-carousel .owl-nav button {
  transform: scaleX(-1);
}
html[dir=rtl] .owl-carousel .owl-dots {
  flex-direction: row-reverse;
  position: absolute;
  right: 0;
  bottom: 20px;
  top: auto;
  height: 20px;
}
html[dir=rtl] .section-benefit .card {
  direction: rtl;
  height: 270px;
}
html[dir=rtl] .section-steps-engage .list li::after {
  left: auto;
  right: -20px;
}
html[dir=rtl] .section-features .card {
  direction: rtl;
}
html[dir=rtl] input {
  direction: rtl;
}/*# sourceMappingURL=style.css.map */