.text-blue {
  color: #34618f;
}

.text-blue-light {
  color: #1D81BC;
}

.text-red {
  color: #e74646;
}

.text-red-light {
  color: #FA9884;
}

.text-red-dark {
  color: #9c0012;
}

.text-gray {
  color: #454545;
}

.text-yellow {
  color: #FFC649;
}

.bg-blue {
  background-color: #34618f;
}

.bg-blue-light {
  background-color: #1D81BC;
}

.bg-red {
  background-color: #e74646;
}

.bg-red-light {
  background-color: #FA9884;
}

.bg-red-dark {
  background-color: #9c0012;
}

@font-face {
  font-family: "IRANSans";
  font-weight: 500;
  src: url("./fonts/ttf/IRANSansWeb(FaNum).ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum).eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum).woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum).woff") format("woff");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "IRANSans";
  font-weight: bold;
  src: url("./fonts/ttf/IRANSansWeb(FaNum)_Bold.ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum)_Bold.eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum)_Bold.woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum)_Bold.woff") format("woff");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "IRANSans";
  font-weight: 400;
  src: url("./fonts/ttf/IRANSansWeb(FaNum)_Light.ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum)_Light.eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum)_Light.woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum)_Light.woff") format("woff");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "IRANSans";
  font-weight: 600;
  src: url("./fonts/ttf/IRANSansWeb(FaNum)_Medium.ttf");
  /* IE9 Compat Modes */
  src: url("./fonts/eot/IRANSansWeb(FaNum)_Medium.eot") format("embedded-opentype"), url("./fonts/woff2/IRANSansWeb(FaNum)_Medium.woff2") format("woff2"), url("./fonts/woff/IRANSansWeb(FaNum)_Medium.woff") format("woff");
  /* Safari, Android, iOS */
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: "IRANSans";
  font-weight: 500;
  direction: rtl;
  text-align: right;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  z-index: 0;
}
body::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1000px;
  background-image: url("./../img/bg-image-bottom.png");
  background-size: 100% 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  body::after {
    height: 2000px;
  }
}

* {
  box-sizing: border-box;
  outline: 0;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: inherit;
}

input,
textarea {
  background-color: transparent;
  border: none;
}

button {
  background: none;
  border: none;
}

button,
a {
  transition: 0.3s;
  outline: 0 !important;
}

button:focus {
  outline: 0 !important;
}

button[disabled]:hover {
  box-shadow: none !important;
  transform: unset !important;
}

input,
textarea {
  outline: none !important;
}

.font-bold {
  font-weight: bold;
}

.font-semibold {
  font-weight: 600;
}

.text-one-line {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-xs {
  font-size: 0.6em;
}

.button-primary {
  background-color: #e74646;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(231, 70, 70, 0.2);
  min-width: 150px;
  min-width: 175px;
  font-weight: 600;
  border: 2px solid transparent;
}
.button-primary svg {
  fill: #ffffff;
}
.button-primary:hover {
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(231, 70, 70, 0.3);
}

.button-secondry {
  background-color: #ffffff;
  color: #e74646;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  border-radius: 25px;
  min-width: 150px;
  min-width: 175px;
  font-weight: 600;
  border: 2px solid #e74646;
}
.button-secondry svg {
  fill: #e74646;
}
.button-secondry:hover {
  color: #e74646;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(231, 70, 70, 0.1);
}

.button-blue {
  background-color: #34618f;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 25px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(52, 97, 143, 0.1);
  min-width: 150px;
  min-width: 175px;
  font-weight: 600;
  border: 2px solid #34618f;
}
.button-blue svg {
  color: #ffffff;
}
.button-blue:hover {
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(52, 97, 143, 0.3);
}

.navigation {
  padding: 15px 0;
  margin-bottom: 25px;
}
.navigation .logo .img {
  height: 60px;
}
.navigation .logo .img img {
  height: 100%;
}
.navigation .logo .subname {
  font-size: 0.9em;
}
.navigation .links {
  display: flex;
  gap: 25px;
  color: #454545;
}
.navigation .links .link {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}
.navigation .links .link:hover {
  color: #e74646;
}
.navigation .links .link-dropdown {
  position: relative;
}
.navigation .links .link-dropdown .arrow {
  transition: 0.3s;
  line-height: 0;
}
.navigation .links .link-dropdown .arrow svg {
  fill: #454545;
}
.navigation .links .link-dropdown::after {
  content: "";
  top: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  height: 10px;
}
.navigation .links .link-dropdown .dropdown-items {
  background-color: #ffffff;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 9;
  width: 200px;
  border-top: 2px solid #e74646;
  box-shadow: 0 10px 50px rgba(28, 76, 156, 0.2);
  display: none;
}
.navigation .links .link-dropdown .dropdown-items .dropdown-item {
  padding: 10px;
  border-radius: 5px;
}
.navigation .links .link-dropdown .dropdown-items .dropdown-item:hover {
  background-color: transparent;
  color: #e74646;
}
.navigation .links .link-dropdown:hover .link {
  color: #e74646;
}
.navigation .links .link-dropdown:hover .arrow svg {
  fill: #e74646;
}
.navigation .btn-open-menu {
  width: 55px;
}
.navigation .btn-open-menu svg {
  fill: #e74646;
  transition: 0.3s;
}
.navigation .btn-close-menu {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 36px;
}
.navigation .btn-close-menu svg {
  fill: #454545;
  transition: 0.3s;
}
.navigation .btn-close-menu:hover svg {
  fill: #e74646;
}
.navigation .click-outside-menu {
  position: fixed;
  background-color: rgba(69, 69, 69, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  display: none;
}
@media only screen and (max-width: 768px) {
  .navigation .holder-links {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #ffffff;
    height: 100%;
    width: 275px;
    z-index: 9;
    box-shadow: 0 -10px 50px rgba(28, 76, 156, 0.15);
    padding: 20px;
    transition: 0.3s;
    overflow: auto;
  }
  .navigation .holder-links.active {
    right: 0;
  }
  .navigation .links {
    display: block;
  }
  .navigation .links .link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(69, 69, 69, 0.2);
    padding: 15px 0;
  }
  .navigation .links .link-dropdown {
    position: relative;
  }
  .navigation .links .link-dropdown .arrow {
    transition: 0.3s;
    line-height: 0;
  }
  .navigation .links .link-dropdown .arrow svg {
    fill: #454545;
  }
  .navigation .links .link-dropdown .dropdown-items {
    padding-right: 10px;
    font-size: 0.95em;
    position: static;
    width: 100%;
    border-top: none;
    box-shadow: none;
    padding-top: 10px;
  }
  .navigation .links .link-dropdown .dropdown-items .dropdown-item {
    padding: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .navigation .logo .img {
    height: 50px;
  }
  .navigation .logo .subname {
    font-size: 0.85em;
  }
  .navigation .btn-open-menu {
    width: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .holder-links {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #ffffff;
    height: 100%;
    width: 320px;
    z-index: 9;
    box-shadow: 0 -10px 50px rgba(28, 76, 156, 0.15);
    padding: 20px;
    transition: 0.3s;
  }
  .navigation .holder-links.active {
    right: 0;
  }
  .navigation .links {
    display: block;
  }
  .navigation .links .link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(69, 69, 69, 0.2);
    padding: 15px 0;
  }
  .navigation .links .link-dropdown {
    position: relative;
  }
  .navigation .links .link-dropdown .arrow {
    transition: 0.3s;
    line-height: 0;
  }
  .navigation .links .link-dropdown .arrow svg {
    fill: #454545;
  }
  .navigation .links .link-dropdown .dropdown-items {
    padding-right: 10px;
    font-size: 0.95em;
    position: static;
    width: 100%;
    border-top: none;
    box-shadow: none;
    padding-top: 10px;
  }
  .navigation .links .link-dropdown .dropdown-items .dropdown-item {
    padding: 8px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .navigation .holder-links {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #ffffff;
    height: 100%;
    width: 320px;
    z-index: 9;
    box-shadow: 0 -10px 50px rgba(28, 76, 156, 0.15);
    padding: 20px;
    transition: 0.3s;
  }
  .navigation .holder-links.active {
    right: 0;
  }
  .navigation .links {
    display: block;
  }
  .navigation .links .link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(69, 69, 69, 0.2);
    padding: 15px 0;
  }
  .navigation .links .link-dropdown {
    position: relative;
  }
  .navigation .links .link-dropdown .arrow {
    transition: 0.3s;
    line-height: 0;
  }
  .navigation .links .link-dropdown .arrow svg {
    fill: #454545;
  }
  .navigation .links .link-dropdown .dropdown-items {
    padding-right: 10px;
    font-size: 0.95em;
    position: static;
    width: 100%;
    border-top: none;
    box-shadow: none;
    padding-top: 10px;
  }
  .navigation .links .link-dropdown .dropdown-items .dropdown-item {
    padding: 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .navigation .click-outside-menu {
    display: none !important;
  }
}

footer {
  position: relative;
  z-index: 0;
}
footer .logo {
  height: 60px;
}
footer .logo img {
  height: 100%;
}
footer .link-list ul {
  padding: 0;
  list-style: none;
}
footer .link-list .link {
  margin-bottom: 8px;
}
footer .link-list .link a:hover {
  color: #e74646;
}
footer .website-information {
  border: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 15px 15px 15px 0;
  margin-bottom: 25px;
}
footer .symbols {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
footer .symbols .symbol {
  width: 125px;
  max-width: 50%;
}
footer .symbols .symbol img {
  width: 100%;
}
footer .copyright {
  opacity: 0.8;
  font-size: 0.95em;
}
footer .social-networks {
  gap: 8px;
}
footer .social-networks .social-network {
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}
footer .social-networks .social-network svg {
  width: 30px;
  fill: #e74646;
  transition: 0.3s;
}
footer .social-networks .social-network:hover {
  background-color: white;
}
footer .social-networks .social-network:hover svg {
  transform: scale(0.9);
}

h1 {
  font-weight: bold;
  font-size: 30px;
  line-height: 46px;
}

h2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 42px;
}

h3 {
  font-weight: bold;
  font-size: 22px;
  line-height: 38px;
}

h4 {
  font-weight: bold;
  font-size: 18px;
  line-height: 34px;
}

h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 32px;
}

@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 22px;
    line-height: 30px;
  }
  h2 {
    font-size: 20px;
    line-height: 28px;
  }
  h3 {
    font-size: 18px;
    line-height: 24px;
  }
  h4 {
    font-size: 16px;
    line-height: 22px;
  }
  h5 {
    font-size: 14px;
    line-height: 20px;
  }
}
.home-page {
  background-image: url("./../img/bg-image.png");
  background-size: 100% 100%;
}

.header {
  margin-bottom: 65px;
}
.header .title-page {
  font-size: 2em !important;
}
.header .image {
  position: relative;
  padding: 0 20px 0 15px;
  z-index: 0;
}
.header .image .sms {
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(69, 69, 69, 0.2);
  padding: 10px;
  position: absolute;
  z-index: 9;
  transform: scale(0);
  transition: 0.3s;
}
.header .image .sms img {
  width: 100%;
  background-color: #ffffff;
}
.header .image .sms.sms-1 {
  top: 120px;
  left: -100px;
  border-radius: 20px 20px 0 20px;
  width: 190px;
  transform-origin: 100% 100%;
  -webkit-animation: example 1.5s 1s forwards;
          animation: example 1.5s 1s forwards;
}
.header .image .sms.sms-2 {
  top: 30px;
  right: -15px;
  border-radius: 20px 20px 20px 0;
  width: 225px;
  transform-origin: 0 100%;
  -webkit-animation: example 1.5s 1.5s forwards;
          animation: example 1.5s 1.5s forwards;
}
@-webkit-keyframes example {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes example {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 768px) {
  .header .image {
    padding: 0 10px;
  }
  .header .image .sms.sms-1 {
    left: 0;
    top: 170px;
    width: 150px;
  }
  .header .image .sms.sms-2 {
    top: 85px;
    right: 35px;
    width: 175px;
  }
}
@media only screen and (max-width: 575px) {
  .header .title-page {
    font-size: 1.7em !important;
  }
  .header .image {
    padding: 0 5px;
  }
  .header .image .sms.sms-1 {
    left: 0;
    top: 100px;
    width: 100px;
    border-radius: 10px 10px 0 10px;
  }
  .header .image .sms.sms-2 {
    top: 35px;
    right: 5px;
    width: 125px;
    border-radius: 10px 10px 10px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .image .sms.sms-1 {
    top: 180px;
    left: -20px;
  }
  .header .image .sms.sms-2 {
    top: 90px;
    right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header .image .sms.sms-1 {
    left: -20px;
    width: 150px;
  }
  .header .image .sms.sms-2 {
    top: 40px;
    right: 0;
    width: 175px;
  }
}

.services {
  margin-bottom: 45px;
}
.services .service {
  text-align: center;
  margin-bottom: 35px;
}
.services .service .icon {
  height: 100px;
}
.services .service .icon img {
  width: 100px;
  display: block;
  margin: auto;
}

.advertising-sms {
  background-color: #FFF3F3;
  margin-bottom: 175px;
  position: relative;
  margin-top: 150px;
}
.advertising-sms .shape {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
}
.advertising-sms .shape svg {
  width: 100%;
}
.advertising-sms .image {
  margin-bottom: -100px;
  display: flex;
  justify-content: center;
}
.advertising-sms .image svg {
  width: 85%;
}
.advertising-sms .advertising-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.advertising-sms .advertising-items .advertising-item {
  width: calc((100% - 40px) / 3);
  box-shadow: 0px 3px 10px rgba(69, 69, 69, 0.1);
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;
}
.advertising-sms .advertising-items .advertising-item .icon {
  height: 60px;
}
.advertising-sms .advertising-items .advertising-item .icon img {
  height: 100%;
}
.advertising-sms .advertising-items .advertising-item .title {
  font-weight: 700;
  font-size: 1.15em;
}
.advertising-sms .advertising-items .advertising-item .description {
  color: #454545;
  font-size: 0.95em;
}
@media only screen and (max-width: 768px) {
  .advertising-sms {
    margin-bottom: 100px;
    margin-top: 50px;
  }
  .advertising-sms .shape {
    top: -50px;
  }
  .advertising-sms .advertising-items .advertising-item {
    width: 100%;
  }
  .advertising-sms .image {
    margin-bottom: -50px;
  }
  .advertising-sms .image svg {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .advertising-sms {
    margin-bottom: 75px;
  }
  .advertising-sms .shape {
    top: -25px;
  }
  .advertising-sms .image {
    margin-bottom: -25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advertising-sms .shape {
    top: -50px;
  }
  .advertising-sms .advertising-items .advertising-item {
    width: calc((100% - 20px) / 2);
  }
  .advertising-sms .image {
    margin-bottom: -50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .advertising-sms .shape {
    top: -50px;
  }
}

.packages {
  margin-bottom: 45px;
  width: 85%;
}
.packages .swiper {
  padding: 35px 20px 45px 20px;
}
.packages .swiper .swiper-slide {
  height: auto;
}
.packages .swiper-pagination {
  position: static;
}
.packages .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  border-radius: 15px;
  background-color: #e74646;
}
.packages .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 12px;
  border-radius: 15px;
  background-color: #e74646;
}
.packages .package {
  box-shadow: 0 5px 20px rgba(80, 94, 100, 0.15);
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  color: #454545;
  position: relative;
  height: 100%;
  position: relative;
  padding-bottom: 135px;
}
.packages .package.large {
  transform: scale(1.1);
  z-index: 3;
}
.packages .package .label {
  color: #ffffff;
  padding: 3px 5px;
  font-size: 0.72em;
  font-weight: 600;
  position: absolute;
  z-index: 1;
  width: 100px;
  left: -28px;
  top: 13px;
  transform: rotate(-45deg);
  text-align: center;
}
.packages .package .package-header {
  position: relative;
  margin-bottom: 15px;
}
.packages .package .package-header svg {
  transform: scale(1.1);
}
.packages .package .package-header .title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.packages .package .package-links {
  position: absolute;
  bottom: 0;
  left: 0;
  bottom: 15px;
  width: 100%;
}
.packages .package .price {
  margin-bottom: 25px;
  padding: 0 10px;
}
.packages .package .price .previous-price {
  text-decoration: line-through;
  opacity: 0.7;
}
.packages .package .price .curent-price {
  font-weight: 700;
  font-size: 1.5em;
}
.packages .package .options-list {
  list-style-type: none;
  padding: 0 10px;
  text-align: center;
  font-size: 0.95em;
}
.packages .package .options-list li {
  margin-bottom: 5px;
  display: block;
}
.packages .package .btn-buy {
  color: #e74646;
  border: 2px solid #e74646;
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  padding: 8px 20px;
  border-radius: 25px;
  min-width: 150px;
  font-weight: 600;
}
.packages .package .btn-buy:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(69, 69, 69, 0.1);
}
.packages .package .btn-more-info {
  font-size: 0.9em;
  display: inline-block;
}
.packages .package .btn-more-info:hover {
  transform: translateX(-2px);
}
.packages .package.red .label {
  background-color: #e74646;
}
.packages .package.red .package-header .line {
  fill: #e74646;
}
.packages .package.red .package-header .title {
  color: #e74646;
}
.packages .package.red .btn-buy {
  color: #e74646;
  border: 2px solid #e74646;
}
.packages .package.blue .label {
  background-color: #34618f;
}
.packages .package.blue .package-header .line {
  fill: #34618f;
}
.packages .package.blue .package-header .title {
  color: #34618f;
}
.packages .package.blue .btn-buy {
  color: #34618f;
  border: 2px solid #34618f;
}
.packages .package.green .label {
  background-color: #47A992;
}
.packages .package.green .package-header .line {
  fill: #47A992;
}
.packages .package.green .package-header .title {
  color: #47A992;
}
.packages .package.green .btn-buy {
  color: #47A992;
  border: 2px solid #47A992;
}
.packages .package.yellow .label {
  background-color: #FFC649;
}
.packages .package.yellow .package-header .line {
  fill: #FFC649;
}
.packages .package.yellow .package-header .title {
  color: #FFC649;
}
.packages .package.yellow .btn-buy {
  color: #FFC649;
  border: 2px solid #FFC649;
}
.packages .package.show-all {
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.packages .package.show-all img {
  max-height: 200px;
  max-width: 100%;
  display: block;
  margin: auto;
  padding: 0 25px;
}
@media only screen and (max-width: 768px) {
  .packages {
    margin-bottom: 35px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .packages {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .packages {
    width: 100%;
  }
}

.options {
  margin-bottom: 65px;
}
.options .options-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 0;
}
.options .options-items .option-item {
  width: calc((100% - 20px) / 2);
  padding: 10px;
}
.options .options-items .option-item .icon {
  height: 40px;
}
.options .options-items .option-item .icon img {
  height: 100%;
}
.options .options-items .option-item .title {
  font-weight: 700;
  font-size: 1.15em;
}
.options .options-items .option-item .description {
  color: #454545;
  font-size: 0.95em;
}
.options .image img {
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .options {
    margin-bottom: 75px;
  }
  .options .options-items .option-item {
    width: 100%;
  }
  .options .image img {
    max-height: 350px;
    width: auto;
    display: block;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .options .image img {
    max-height: 400px;
    width: auto;
    display: block;
    margin: auto;
  }
}

.blog {
  overflow: hidden;
  padding-bottom: 65px;
}
.blog .container {
  position: relative;
}
.blog .shape {
  position: absolute;
  left: -30px;
  top: 0;
  width: 350px;
}
.blog .shape img {
  width: 100%;
}
.blog .article {
  margin-bottom: 25px;
  position: relative;
  z-index: 0;
  box-shadow: 0 5px 30px rgba(80, 94, 100, 0.15);
  background-color: #ffffff;
  border-radius: 25px;
  transform: scale(0.95);
  display: block;
}
.blog .article .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  z-index: -1;
  overflow: hidden;
}
.blog .article .background-image img {
  height: 100%;
  width: 100%;
}
.blog .article .img {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
}
.blog .article .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.blog .article .body {
  padding: 20px;
}
.blog .article .body .title {
  overflow: hidden;
  position: relative;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.blog .article .body .description {
  font-size: 0.95em;
  overflow: hidden;
  position: relative;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: -webkit-box;
  color: #454545;
}
.blog .article:hover {
  box-shadow: 0 5px 30px rgba(80, 94, 100, 0.35);
}
.blog .article:hover .img img {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  .blog .background-image {
    display: none;
  }
  .blog .shape {
    position: absolute;
    left: -30px;
    top: 75px;
    width: 200px;
  }
  .blog .shape svg {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .blog .background-image {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog .background-image {
    display: none;
  }
  .blog .shape {
    position: absolute;
    left: -30px;
    top: 30px;
    width: 250px;
  }
  .blog .shape svg {
    width: 100%;
  }
}

.customers-comments {
  margin-bottom: 45px;
}
.customers-comments .holder-comments {
  width: 620px;
  min-width: 620px;
  margin: auto;
  position: relative;
}
.customers-comments .holder-comments svg {
  width: 100%;
}
.customers-comments .holder-comments .comments {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 100px;
  padding: 50px 100px 75px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.customers-comments .holder-comments .comments .comment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.customers-comments .holder-comments .comments .user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.customers-comments .holder-comments .comments .user .avatar {
  height: 65px;
  width: 65px;
  min-height: 65px;
  min-width: 65px;
  border-radius: 50%;
  overflow: hidden;
}
.customers-comments .holder-comments .comments .user .avatar img {
  height: 100%;
  width: 100%;
}
.customers-comments .holder-comments .comments .user .name {
  font-weight: bold;
  font-size: 1.2em;
}
.customers-comments .holder-comments .comments .user .role {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  height: 25px;
  overflow: hidden;
}
.customers-comments .holder-comments .comments .text {
  color: #61677A;
  font-size: 0.95em;
}
.customers-comments .holder-comments .pagination {
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 100%;
}
.customers-comments .holder-comments .pagination .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.customers-comments .holder-comments .pagination .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 10px;
  background-color: #e74646;
}
.customers-comments .holder-comments .swiper-slide {
  height: auto;
}
.customers-comments .shape-users {
  width: 30%;
  transition: 0.3s;
}
.customers-comments .shape-users img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customers-comments .shape-users:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  .customers-comments .holder-comments {
    width: 550px;
    min-width: 550px;
    margin: auto;
    position: relative;
  }
  .customers-comments .holder-comments .comments .comment {
    font-size: 0.95em;
  }
  .customers-comments .holder-comments .pagination {
    bottom: 50px;
  }
  .customers-comments .shape-users {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .customers-comments .holder-comments {
    width: 100%;
    min-width: 100%;
    margin: auto;
    position: relative;
    padding-bottom: 15px;
  }
  .customers-comments .holder-comments svg {
    display: none;
  }
  .customers-comments .holder-comments .comments {
    position: static;
    top: 0;
    left: 0;
    padding: 0;
  }
  .customers-comments .holder-comments .comments .comment {
    max-width: 360px;
    margin: auto;
    height: 100%;
    background-image: url("./../img/bg-comment.png");
    background-size: 100% 100%;
    padding: 55px 50px 35px 25px;
  }
  .customers-comments .holder-comments .comments .user .avatar {
    height: 50px;
    width: 50px;
    min-height: 50px;
    min-width: 50px;
  }
  .customers-comments .holder-comments .comments .user .role {
    height: 20px;
  }
  .customers-comments .holder-comments .pagination {
    bottom: 0;
  }
  .customers-comments .shape-users {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .customers-comments .shape-users {
    display: none;
  }
}

.customer-brands {
  margin-bottom: 25px;
}
.customer-brands .swiper-slide {
  width: auto;
}
.customer-brands .brand {
  margin: 10px;
  display: block;
  padding: 10px;
}
.customer-brands .brand img {
  height: 100px;
}
.customer-brands .brand:hover {
  box-shadow: 0px 3px 10px rgba(69, 69, 69, 0.3);
  background-color: #ffffff;
  border-radius: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .customer-brands .shape-users {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .customer-brands .brand img {
    height: 75px;
  }
}

.tariffs {
  margin-bottom: 25px;
}
.tariffs .table-tariff {
  box-shadow: 0 5px 30px rgba(80, 94, 100, 0.15);
  background-color: #ffffff;
  border-radius: 5px;
  font-size: 0.9em;
  overflow: hidden;
}
.tariffs .table-tariff thead tr {
  background-color: rgba(231, 70, 70, 0.9);
  color: #ffffff;
}
.tariffs .table-tariff thead tr th {
  border-top: 0;
  min-width: 75px;
}
.tariffs .table-tariff thead tr th:first-child {
  min-width: auto;
}
.tariffs .table-tariff tbody {
  color: #454545;
}
.tariffs .table-tariff tbody tr:nth-child(even) {
  background-color: rgba(52, 97, 143, 0.05);
}
.tariffs .table-tariff .price-unit {
  font-size: 0.85em;
}

.negotiation {
  margin-top: 60px;
  margin-bottom: 65px;
  box-shadow: 0 5px 30px rgba(80, 94, 100, 0.15);
  background-color: #ffffff;
  padding: 25px 200px;
  border-radius: 10px;
}
.negotiation .img {
  width: 200px;
  display: block;
  margin: -60px auto 15px auto;
}
@media only screen and (max-width: 768px) {
  .negotiation {
    padding: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .negotiation {
    margin-top: 50px;
    margin-bottom: 45px;
  }
  .negotiation .img {
    width: 150px;
    margin: -50px auto 15px auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .negotiation {
    padding: 25px 50px;
  }
}

.advantages-and-disadvantages {
  margin-bottom: 25px;
}
.advantages-and-disadvantages .items {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.advantages-and-disadvantages .items .item {
  width: calc((100% - 50px) / 3);
  border-radius: 10px;
  margin-bottom: 10px;
}
.advantages-and-disadvantages .items .item .icon {
  height: 60px;
}
.advantages-and-disadvantages .items .item .icon img {
  height: 100%;
}
.advantages-and-disadvantages .items .item .title {
  font-weight: 700;
  font-size: 1.15em;
}
.advantages-and-disadvantages .items .item .description {
  color: #454545;
  font-size: 0.95em;
}
@media only screen and (max-width: 768px) {
  .advantages-and-disadvantages .items .item {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .advantages-and-disadvantages .items .item {
    width: calc((100% - 25px) / 2);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .advantages-and-disadvantages .items .item {
    width: calc((100% - 25px) / 2);
  }
}/*# sourceMappingURL=style.css.map */