@charset "UTF-8";
/*#region ----------------- X) General */
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: "Noto Sans" !important;
  font-weight: 400;
  margin: 0;
  background-color: #00234b;
  color: #fff;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
strong,
span,
p {
  font-family: "Noto Sans" !important;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

h4 {
  font-size: 1.5rem;
  font-weight: 800;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

b,
strong {
  font-weight: bolder;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

::selection {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/*#endregion -------------- X) General */
/*#region ----------------- Animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scaleZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes opacityFace {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.28;
  }
  100% {
    opacity: 0.1;
  }
}
@keyframes moveShapeY {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0, -40px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 35, 75, 0.7), 0 0 0 0 rgba(0, 35, 75, 0.7);
  }
  40% {
    box-shadow: 0 0 0 20px rgba(0, 35, 75, 0), 0 0 0 0 rgba(0, 35, 75, 0.7);
  }
  80% {
    box-shadow: 0 0 0 20px rgba(0, 35, 75, 0), 0 0 0 20px rgba(0, 35, 75, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 35, 75, 0), 0 0 0 20px rgba(0, 35, 75, 0);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  padding: 0.7rem 1.2rem;
  border-radius: 10rem;
  font-size: 16px;
  border: 1px solid transparent;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn .mdi {
  font-size: 22px;
  line-height: normal;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200px;
  height: 100%;
  transform: rotate(-65deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.icon-left {
  padding-left: 3.1rem;
}
.icon-left .mdi {
  position: absolute;
  top: 9px;
  left: 18px;
}

.icon-right {
  padding-right: 3.1rem;
}
.icon-right .mdi {
  position: absolute;
  top: 9px;
  right: 18px;
}

.btn-primary {
  background-color: #20ade5;
  color: white;
  border-color: #20ade5;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #20ade5;
  color: #fff;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  left: 100%;
  opacity: 1;
}

.btn-secondary {
  background: white;
  color: #00234b;
  border-color: white;
}
.btn-secondary:hover::before, .btn-secondary:focus::before {
  left: 100%;
  opacity: 1;
}

.btn-primary-outline {
  border-color: white;
  background-color: transparent;
  color: white;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background-color: white;
  color: #20ade5;
}

.btn-link {
  font-size: 16px;
  font-weight: 600;
  color: #20ade5;
  text-align: center;
}
.btn-link .mdi {
  position: relative;
  top: 5px;
  font-size: 18px;
}

/*#endregion -------------- Buttons */
/*#region ----------------- Navbar */
.myNavbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 888;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.myNavbar.scroll {
  background-color: rgba(0, 0, 0, 0.9);
}
.myNavbar.scroll .header-inner {
  padding: 10px 0;
}
.myNavbar .header-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  padding: 30px 0;
  transition: padding 0.3s ease;
}
.myNavbar .nav-logo a {
  display: block;
  position: relative;
  width: 100%;
  height: 70px;
}
.myNavbar .nav-logo a::before {
  content: "";
  display: inline-block;
  width: 180px;
  height: 70px;
  background-image: url(../images/logo-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.myNavbar .nav-links {
  margin-right: 10px;
}
.myNavbar .nav-links .link-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.myNavbar .nav-links .link-list .item {
  margin-left: 24px;
  position: relative;
}
.myNavbar .nav-links .link-list .item:hover .sub-list {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease;
  transform: translateY(0);
}
.myNavbar .nav-links .link-list .item a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 15px 0;
  transition: all 0.2s ease-in;
  display: block;
  white-space: nowrap;
}
.myNavbar .nav-links .link-list .item a:hover {
  color: #20ade5;
  transition: all 0.2s ease-in;
}
.myNavbar .nav-links .link-list .item a .mdi {
  margin-right: 5px;
  position: relative;
  top: 3px;
}
.myNavbar .nav-links .link-list .item.have-child > a {
  position: relative;
  padding-right: 18px;
}
.myNavbar .nav-links .link-list .item.have-child > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 27px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  transform: rotate(0deg);
}
.myNavbar .nav-links .link-list .item.have-child:hover > a::before {
  border-color: #20ade5 transparent transparent transparent;
}
.myNavbar .nav-links .link-list .item.have-child:hover > ul {
  display: block;
}
.myNavbar .nav-links .link-list .item > ul {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 10px 0;
  display: none;
}
.myNavbar .nav-links .link-list .item > ul a {
  padding: 12px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
}
.myNavbar .mobile-links {
  display: none;
}
.myNavbar .btn-mobile-menu {
  background-color: transparent;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  padding: 5px;
}
.myNavbar .btn-mobile-menu .mdi {
  font-size: 30px;
  position: relative;
  top: -1;
  line-height: normal;
}
.myNavbar .nav-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.myNavbar .choose-navbar-language {
  margin-right: 15px;
}
.myNavbar .choose-navbar-language .dropdown-menu .dropdown-item {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
}
.myNavbar .choose-navbar-language .dropdown-menu .dropdown-item .flag-name {
  display: inline-block;
}
.myNavbar .choose-navbar-language .dropdown-menu .dropdown-item .flag {
  display: inline-block;
  width: 30px;
}
.myNavbar .choose-navbar-language .dropdown-menu .dropdown-item .flag img {
  width: 100%;
  border-radius: 50%;
}
.myNavbar .btn-select-lang {
  background-color: transparent;
  border: none;
}
.myNavbar .btn-select-lang.dropdown-toggle::after {
  border-top: 0.3em solid #20ade5 !important;
  position: relative;
  top: 2px;
}
.myNavbar .btn-select-lang .text {
  color: white;
}
.myNavbar .btn-select-lang .flag {
  width: 30px;
  display: inline-block;
  margin-right: 5px;
}
.myNavbar .btn-select-lang .flag img {
  width: 100%;
  border-radius: 50%;
}

@media (max-width: 1400px) {
  .myNavbar .nav-links .link-list .item {
    margin-left: 20px;
  }
  .myNavbar .nav-links .link-list .item a {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .myNavbar .container-lg {
    max-width: 95%;
  }
  .myNavbar.scroll .header-inner {
    padding: 12px 0;
  }
  .myNavbar .header-inner {
    grid-template-columns: 160px 1fr auto;
  }
  .myNavbar .nav-logo a {
    height: 60px;
  }
  .myNavbar .nav-logo a::before {
    width: 160px;
  }
  .myNavbar .nav-action .btn {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .myNavbar .header-inner {
    grid-template-columns: 1fr 50px 1fr;
  }
  .myNavbar .nav-links {
    display: none;
  }
  .myNavbar .mobile-links {
    display: block;
    z-index: 20;
  }
  .myNavbar .nav-logo {
    position: relative;
    z-index: 10;
  }
  .myNavbar .nav-logo a {
    height: 60px;
  }
  .myNavbar .nav-logo a::before {
    background-image: url(../images/logo-simple.png);
    background-repeat: no-repeat;
    width: 50px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .myNavbar .container-lg {
    max-width: 100%;
  }
  .myNavbar .choose-navbar-language {
    display: none;
  }
  .myNavbar .nav-action .btn {
    padding: 0.6rem 1rem;
    font-size: 13px;
  }
  .myNavbar .nav-action .btn.icon-right {
    padding-right: 2.5rem;
  }
  .myNavbar .nav-action .btn.icon-right .mdi {
    top: 5px;
    right: 12px;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Sidebar Mobile Menu */
#sidebar-menu {
  position: fixed;
  top: 0;
  left: -300px;
  height: 100vh;
  width: 300px;
  z-index: 2002;
  background: #00234b;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
}
#sidebar-menu.active {
  left: 0;
}
#sidebar-menu .sidebar-header {
  padding: 20px 15px;
}
#sidebar-menu .sidebar-header .sidebar-logo {
  text-align: center;
}
#sidebar-menu .sidebar-header .sidebar-logo a {
  display: block;
  width: 160px;
  margin: 0 auto;
}
#sidebar-menu .sidebar-header .sidebar-logo a img {
  width: 100%;
}
#sidebar-menu .sidebar-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  position: relative;
  min-height: 62px;
}
#sidebar-menu .sidebar-action .btn-close-menu {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 45px;
  height: 45px;
  color: white;
  background-color: transparent;
  border: none;
  padding: 0;
  opacity: 0.5;
}
#sidebar-menu .sidebar-action .btn-close-menu .mdi {
  font-size: 24px;
  line-height: normal;
}
#sidebar-menu .sidebar-action .btn-close-menu:hover {
  opacity: 1;
}
#sidebar-menu .sidebar-action .choose-navbar-language {
  display: none;
}
#sidebar-menu .category-list {
  display: none;
  margin-top: 20px;
}
#sidebar-menu .category-list .item a {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: relative;
  transition: all 0.2s ease;
}
#sidebar-menu .category-list .item a .mdi {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  line-height: normal;
}
#sidebar-menu .category-list .item a:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.overlay-back {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2001;
  opacity: 0;
  transition: all 0.3s;
}
.overlay-back.active {
  display: block;
  opacity: 1;
}

@media (max-width: 992px) {
  #sidebar-menu .category-list {
    display: block;
  }
}
@media (max-width: 768px) {
  #sidebar-menu .sidebar-action .choose-navbar-language {
    display: block;
  }
}
@media (max-width: 350px) {
  #sidebar-menu {
    width: 100%;
    left: -400px;
  }
}
/*#endregion -------------- Sidebar Mobile Menu */
/*#region ----------------- Hero */
.home-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
#intro_video {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
#intro_video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home-hero::before {
  /*content: "";*/
  /*position: absolute;*/
  /*top: 0;*/
  /*right: 50%;*/
  /*transform: translateX(50%);*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*background-image: url(../images/hero-img.gif);*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  opacity: 1;
  z-index: -1;
}
.home-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 35, 75);
  background: radial-gradient(circle, rgba(0, 35, 75, 0.3) 0%, rgba(0, 35, 75, 0.8) 66%);
  z-index: 0;
}
.home-hero .section-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.home-hero .text-content {
  width: 50%;
}
.home-hero .text-content h1 {
  font-size: 3.5rem;
  color: white;
  line-height: 4rem;
  text-transform: uppercase;
}
.home-hero .text-content h2 {
  font-weight: 500;
  margin-bottom: 20px;
}
.home-hero .text-content p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 28px;
}

@media (max-width: 992px) {
  .home-hero .text-content {
    text-align: center;
    width: 100%;
  }
  .home-hero .text-content h1 {
    font-size: 3rem;
  }
  .home-hero .text-content h2 {
    font-size: 1.8rem;
  }
  .home-hero .text-content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .home-hero .text-content {
    text-align: center;
  }
  .home-hero .text-content h1 {
    font-size: 2.5rem;
  }
  .home-hero .text-content h2 {
    font-size: 1.4rem;
  }
  .home-hero .text-content p {
    font-size: 14px;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Property */
.property-section {
  margin: 50px 0;
}
.property-section .section-inner {
  width: 80%;
  margin: 0 auto;
}
.property-section .section-inner .row > div:last-child .card-property .card-inner::before {
  display: none;
}

.card-property .card-inner {
  display: grid;
  grid-template-columns: 70px auto;
  position: relative;
}
.card-property .card-inner::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.3;
}
.card-property .icon img {
  width: 100%;
}
.card-property .info {
  padding-left: 10px;
}
.card-property .info h2 {
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1280px) {
  .property-section .section-inner {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .property-section {
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .card-property {
    margin: 15px 0;
    padding-bottom: 15px;
  }
  .card-property .card-inner {
    grid-template-columns: 50px auto;
    align-items: center;
  }
  .card-property .card-inner::before {
    right: 0;
    bottom: -20px;
    top: unset;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  }
  .card-property .info h2 {
    font-size: 16px;
  }
}
/*#endregion -------------- Property */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 2rem;
  text-align: center;
}
.page-title .title-inner {
  position: relative;
  width: 700px;
  margin: 0 auto;
}
.page-title h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-title .shadow-text {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: normal;
  color: rgba(255, 255, 255, 0.1);
  position: relative;
  top: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-title p {
  font-size: 18px;
  font-weight: 400;
  color: #a2a2a2;
  margin-bottom: 0;
  margin-top: 20px;
}
.page-title.small-size h2 {
  font-size: 20px;
}
.page-title.align-left {
  text-align: left;
}
.page-title.align-left .title-inner {
  width: 100%;
}

@media (max-width: 992px) {
  .page-title .title-inner {
    width: 100%;
  }
  .page-title .shadow-text {
    font-size: 4.3rem;
  }
  .page-title h2 {
    font-size: 2.1rem;
  }
  .page-title p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-title .shadow-text {
    font-size: 4rem;
  }
  .page-title h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 575px) {
  .page-title .shadow-text {
    font-size: 3.6rem;
    top: 30px;
  }
  .page-title h2 {
    font-size: 1.7rem;
  }
}
/*#endregion -------------- Page Title */
/*#region ----------------- About */
.about-home-section {
  margin: 80px 0;
  background-color: rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 80px 0;
}
.about-home-section .image-content .img-inner img {
  width: 100%;
}
.about-home-section .text-content .description p {
  text-align: justify;
}
.about-home-section .text-content .btns-action {
  margin-top: 40px;
}

.contact-page-section {
  margin: 80px 0 100px 0;
}
.contact-page-section .btns-action {
  text-align: center;
  margin-top: 25px;
}
.contact-page-section .image-content img {
  width: 100%;
}

.swiper-about .swiper-slide .thumb {
  width: 90%;
  margin: 0 auto;
}
.swiper-about .swiper-slide .thumb img {
  width: 100%;
}
.swiper-about .swiper-wrapper {
  padding-bottom: 30px;
}
.swiper-about .swiper-pagination {
  bottom: 0 !important;
}
.swiper-about .swiper-pagination-bullet {
  background-color: white;
}

@media (max-width: 1199px) {
  .swiper-about .swiper-slide .thumb {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .about-home-section {
    margin: 80px 0;
  }
  .about-home-section .text-content {
    margin-bottom: 20px;
  }
  .about-home-section .text-content .btns-action {
    text-align: center;
  }
  .contact-page-section .image-content {
    display: none;
  }
}
@media (max-width: 768px) {
  .swiper-about .swiper-slide .thumb {
    width: 100%;
  }
}
/*#endregion -------------- About */
/*#region ----------------- Story */
.story-home-section {
  margin: 80px 0;
  position: relative;
}
.story-home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background-image: url(../images/story.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.story-home-section .description {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.story-home-section .description h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.story-home-section .description p {
  margin: 12px 0;
}

@media (max-width: 992px) {
  .story-home-section {
    margin: 70px 0;
  }
  .story-home-section::before {
    width: 100%;
  }
  .story-home-section .description {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .story-home-section {
    margin: 60px 0;
  }
}
/*#endregion -------------- Story */
/*#region ----------------- Features */
.feature-home-section {
  margin: 80px 0;
  position: relative;
}
.feature-home-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 435px;
  background-image: url(../images/vector-2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.feature-home-section .section-inner {
  margin-top: 50px;
}

.card-feature {
  padding: 15px;
  margin-top: 35px;
}
.card-feature .card-inner {
  border-radius: 20px;
  border: 3px solid #20ade5;
  padding: 40px 30px 30px 30px;
  position: relative;
  box-shadow: 0 10px 20px rgba(32, 173, 229, 0.2);
  background-color: #00234b;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.card-feature .card-inner::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 8px;
  width: 50px;
  height: 50px;
  background-image: url(../images/vector-3.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.card-feature .number {
  position: absolute;
  left: 30px;
  top: -32px;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: #20ade5;
  background-color: #00234b;
  padding: 0 10px;
  background-color: #00234b;
}
.card-feature .info {
  min-height: 64px;
}
.card-feature .info h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 0;
}
.card-feature:hover .card-inner {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(32, 173, 229, 0.4);
}
.card-feature:hover .card-inner::before {
  animation: rotate 5s linear infinite;
}

@media (max-width: 1199px) {
  .card-feature .card-inner {
    padding: 30px 20px 20px 20px;
  }
  .card-feature .info {
    min-height: 96px;
  }
  .card-feature .info h3 {
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  .card-feature {
    padding: 15px 0;
  }
  .card-feature .info {
    min-height: 84px;
  }
  .card-feature .info h3 {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .card-feature .info {
    min-height: unset;
  }
}
/*#endregion -------------- Features */
/*#region ----------------- Features */
.Products-home-section {
  margin: 80px 0;
}
.Products-home-section .section-inner {
  margin-top: 60px;
}

.swiper-products .swiper-wrapper {
  padding-bottom: 50px;
}
.swiper-products .swiper-pagination-bullet {
  background-color: white;
}

.card-product .card-inner {
  display: block;
  padding: 0 30px 30px 30px;
  position: relative;
  border-radius: 0 0 20px 20px;
}
.card-product .card-inner::before {
  border-radius: 0 0 20px 20px;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(32, 173, 229, 0) 15%, rgba(32, 173, 229, 0.7) 100%);
  opacity: 0.5;
}
.card-product .thumb {
  width: 120px;
  margin: 0 auto 1rem auto;
}
.card-product .thumb img {
  width: 100%;
}
.card-product .info h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.card-product .info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
  min-height: 75px;
}
.card-product .btn {
  width: 100%;
  margin-top: 20px;
}
.card-product:hover .card-inner::before {
  opacity: 1;
}
.card-product:hover .btn {
  background-color: white;
  color: #20ade5;
}

@media (max-width: 768px) {
  .card-product .thumb {
    width: 100px;
  }
}
/*#endregion -------------- Features */
/*#region ----------------- Blogs */
.blogs-home-section {
  margin: 80px 0 100px 0;
}
.blogs-home-section .section-inner {
  margin-top: 40px;
}
.blogs-home-section .grid-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-areas: "grid-1 grid-3" "grid-2 grid-3";
}
.blogs-home-section .grid-layout .grid {
  padding: 10px;
}
.blogs-home-section .grid-layout .grid.grid-1 {
  grid-area: grid-1;
}
.blogs-home-section .grid-layout .grid.grid-2 {
  grid-area: grid-2;
}
.blogs-home-section .grid-layout .grid.grid-3 {
  grid-area: grid-3;
}

.card-blog .card-inner {
  display: grid;
  grid-template-columns: 240px auto;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
}
.card-blog .thumb .img-inner {
  overflow: hidden;
  border-radius: 16px;
}
.card-blog .thumb img {
  width: 100%;
}
.card-blog .rate {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #20ade5;
  padding: 5px 10px;
  border-radius: 10px;
  color: white;
}
.card-blog .rate span {
  font-size: 13px;
}
.card-blog .data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-blog .data .author {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
}
.card-blog .data .author .user-img img {
  width: 100%;
  border-radius: 50%;
}
.card-blog .data .author h6 {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 10px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog .data .tag {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 10px;
}
.card-blog .info {
  padding: 20px 12px 12px 12px;
}
.card-blog .info h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card-blog .info p {
  font-size: 14px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: normal;
}
.card-blog.type-big-img .card-inner {
  grid-template-columns: 100%;
  padding: 0;
  position: relative;
}
.card-blog.type-big-img .card-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 35, 75, 0) 10%, rgba(0, 35, 75, 0.9) 100%);
  z-index: 2;
  border-radius: 20px;
}
.card-blog.type-big-img .thumb {
  width: 100%;
  height: 518px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  margin: 0;
}
.card-blog.type-big-img .thumb .img-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.card-blog.type-big-img .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease-in;
}
.card-blog.type-big-img .info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding: 10px;
  width: 100%;
}
.card-blog.type-big-img .info h3 {
  border-left: 4px solid #20ade5;
  padding: 10px 0 10px 10px;
}
.card-blog.type-big-img .info p {
  display: none;
}
.card-blog:hover .info h3 {
  color: #20ade5;
}

.blogs-list-section {
  margin: 80px 0;
}
.blogs-list-section.blogs-details {
  margin-top: 150px;
}
.blogs-list-section.blogs-details .blogs-list {
  grid-template-columns: auto 380px;
}
.blogs-list-section .grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.blogs-list-section .grid-layout .grid.grid-1 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}
.blogs-list-section .grid-layout .grid.grid-1 .info h3 {
  font-size: 18px;
}
.blogs-list-section .grid-layout .grid.grid-2 {
  grid-column-start: 3;
}
.blogs-list-section .grid-layout .grid.grid-3 {
  grid-column-start: 3;
  grid-row-start: 2;
}
.blogs-list-section .grid-layout .grid.grid-4 {
  grid-column-start: 4;
  grid-row-start: 1;
}
.blogs-list-section .grid-layout .grid.grid-5 {
  grid-column-start: 4;
  grid-row-start: 2;
}
.blogs-list-section .grid-layout .grid .inner {
  display: block;
  position: relative;
}
.blogs-list-section .grid-layout .grid .inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 45, 96, 0) 10%, rgba(0, 45, 96, 0.9) 100%);
  z-index: 2;
  border-radius: 20px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.blogs-list-section .grid-layout .grid .thumb img {
  width: 100%;
  border-radius: 21px;
}
.blogs-list-section .grid-layout .grid .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 10;
}
.blogs-list-section .grid-layout .grid .info h3 {
  font-size: 16px;
  font-weight: 600;
  border-left: 4px solid #20ade5;
  padding: 5px 0 5px 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogs-list-section .grid-layout .grid:hover .inner::before {
  opacity: 1;
}
.blogs-list-section .blogs-list {
  display: grid;
  grid-template-columns: auto 320px;
  margin: 60px 0 0 0;
}
.blogs-list-section .blogs-list .cards-list .card-blog {
  margin-bottom: 20px;
}
.blogs-list-section .blog-main .main-inner {
  padding-right: 20px;
}
.blogs-list-section .side-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 12px;
}
.blogs-list-section .side-box .title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.blogs-list-section .side-box .title h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.blogs-list-section .side-box .title h4 .mdi {
  font-size: 20px;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.blogs-list-section .side-box .box-inner .link-list li {
  margin: 8px 0;
}
.blogs-list-section .side-box .box-inner .link-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blogs-list-section .side-box .box-inner .link-list li .name {
  font-size: 16px;
  font-weight: 500;
  color: white;
  transition: all 0.2s ease-in-out;
}
.blogs-list-section .side-box .box-inner .link-list li .desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease-in-out;
}
.blogs-list-section .side-box .box-inner .link-list li:hover .name {
  color: #20ade5;
}
.blogs-list-section .side-box .box-inner .link-list li:hover .desc {
  color: white;
}
.blogs-list-section .side-box .tags-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.blogs-list-section .side-box .tags-list li {
  margin: 5px;
}
.blogs-list-section .side-box .tags-list li a {
  display: block;
  font-size: 14px;
  color: white;
  background-color: rgba(32, 173, 229, 0.2);
  padding: 5px 10px;
  border-radius: 5rem;
  transition: all 0.3s ease-in-out;
}
.blogs-list-section .side-box .tags-list li a:hover {
  background-color: #20ade5;
  color: white;
}

.blogs-details-section .category {
  margin-bottom: 15px;
}
.blogs-details-section .category a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 5px 10px;
  border-radius: 8px;
}
.blogs-details-section .title h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blogs-details-section .status {
  margin-bottom: 15px;
}
.blogs-details-section .status li {
  font-size: 14px;
  color: white;
}
.blogs-details-section .status li .mdi {
  font-size: 16px;
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.8);
}
.blogs-details-section .thumb img {
  width: 100%;
  border-radius: 20px;
}
.blogs-details-section .description {
  margin: 20px 0;
}
.blogs-details-section .description p {
  font-size: 16px;
  text-align: justify;
  color: white;
}

.card-article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.card-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.card-article .card-inner {
  display: grid;
  grid-template-columns: 80px auto;
}
.card-article .thumb img {
  width: 100%;
  border-radius: 15px;
}
.card-article .info {
  padding-left: 10px;
  padding-top: 5px;
}
.card-article .info h2 {
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-article .info .date {
  font-size: 13px;
  color: white;
}
.card-article .info .date .mdi {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 5px;
}

@media (max-width: 1199px) {
  .card-blog .card-inner {
    grid-template-columns: 200px auto;
  }
  .card-blog.type-big-img .thumb {
    height: unset;
  }
  .card-blog.type-big-img .thumb .img-inner {
    position: unset !important;
  }
  .card-blog.type-big-img .info {
    padding: 20px;
  }
  .blogs-list-section .blogs-list {
    grid-template-columns: auto 300px;
  }
  .blogs-list-section.blogs-details {
    margin-top: 150px;
  }
  .blogs-list-section.blogs-details .blogs-list {
    grid-template-columns: auto 320px;
  }
  .blogs-list-section .side-box .title h4 {
    font-size: 16px;
  }
  .blogs-list-section .side-box .title h4 .mdi {
    font-size: 18px;
  }
  .blogs-list-section .side-box .box-inner .link-list li .name {
    font-size: 14px;
  }
  .blogs-list-section .side-box .box-inner .link-list li .desc {
    font-size: 13px;
  }
}
@media (max-width: 992px) {
  .blogs-home-section {
    margin: 60px 0 80px 0;
  }
  .blogs-home-section .grid-layout {
    grid-template-columns: 100%;
    grid-template-areas: "grid-3" "grid-1" " grid-2";
  }
  .blogs-list-section.blogs-details .blogs-list {
    grid-template-columns: 100%;
  }
  .blogs-list-section .grid-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .blogs-list-section .grid-layout .grid.grid-1 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 2;
  }
  .blogs-list-section .grid-layout .grid.grid-2 {
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .blogs-list-section .grid-layout .grid.grid-3 {
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .blogs-list-section .grid-layout .grid.grid-4 {
    grid-row-start: 4;
    grid-column-start: unset;
  }
  .blogs-list-section .grid-layout .grid.grid-5 {
    grid-row-start: 4;
    grid-column-start: unset;
  }
  .blogs-list-section .blogs-list {
    grid-template-columns: 100%;
  }
  .blogs-list-section .blog-main .main-inner {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .blogs-details-section .title h1 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .blogs-home-section {
    margin: 40px 0 60px 0;
  }
  .card-blog .card-inner {
    grid-template-columns: 160px auto;
    border-radius: 20px;
  }
  .card-blog .info {
    padding: 10px;
  }
  .card-blog .info h3 {
    font-size: 16px;
  }
  .card-blog .info p {
    font-size: 13px;
  }
  .card-blog .data .author {
    grid-template-columns: 30px auto;
  }
  .card-blog .data .author h6 {
    font-size: 13px;
    margin-left: 8px;
  }
  .card-blog .data .tag {
    font-size: 12px;
    padding: 4px 6px;
  }
  .card-blog .rate {
    left: 10px;
    top: 10px;
    padding: 2px 6px;
  }
  .blogs-details-section .title h1 {
    font-size: 20px;
  }
  .blogs-details-section .category a {
    font-size: 14px;
  }
  .blogs-details-section .description p {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .card-blog .card-inner {
    grid-template-columns: 140px auto;
  }
  .card-blog .info {
    padding: 8px;
  }
  .card-blog .info h3 {
    font-size: 14px;
  }
  .card-blog .info p {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .card-blog .data .author {
    grid-template-columns: 30px auto;
  }
  .card-blog .data .author h6 {
    font-size: 12px;
    margin-left: 8px;
  }
  .card-blog .data .tag {
    font-size: 11px;
    padding: 4px 6px;
  }
  .blogs-list-section .grid-layout .grid.grid-big-image .info h3 {
    font-size: 16px;
  }
  .blogs-list-section .grid-layout .grid .info {
    padding: 10px;
  }
  .blogs-list-section .grid-layout .grid .info h3 {
    font-size: 14px;
  }
}
/*#endregion -------------- Blogs */
/*#region ----------------- Footer */
.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-inner {
  position: relative;
  padding: 60px 0 35px 0;
}
.footer .info {
  padding-right: 20px;
}
.footer .info .desc {
  margin-top: 1rem;
  color: white;
  font-size: 13px;
  text-align: justify;
}
.footer .logo {
  width: 180px;
  margin-bottom: 20px;
}
.footer .logo a {
  display: block;
}
.footer .logo a img {
  width: 100%;
}
.footer .f-title {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}
.footer .links {
  margin-bottom: 30px;
}
.footer .links ul li a {
  display: inline-block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.footer .links ul li a:hover {
  color: #20ade5;
}
.footer .social-icons {
  margin: 20px 0;
}
.footer .social-icons ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.footer .social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 24px;
  margin: 5px 0 5px 5px;
  color: white;
  border: 2px solid #20ade5;
  border-radius: 50%;
}
.footer .social-icons ul li a:hover {
  color: #20ade5;
  border-color: #20ade5;
}
.footer .social-icons ul li a .fi {
  display: flex;
}
.footer .email-marketing .email-input {
  display: grid;
  grid-template-columns: 1fr auto;
}
.footer .email-marketing .email-input .input {
  width: 100%;
  border: 2px solid #20ade5;
  border-radius: 10px 0 0 10px;
  background-color: #00234b;
  color: white;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease-in-out;
}
.footer .email-marketing .email-input .input:hover, .footer .email-marketing .email-input .input:focus {
  background-color: #00234b;
}
.footer .email-marketing .email-input .btn {
  border-radius: 0 10px 10px 0;
}
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  text-align: center;
  color: white;
  line-height: 26px;
}

@media (max-width: 1199px) {
  .footer .logo {
    margin: 0 auto;
  }
  .footer .info .desc {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer .footer-inner {
    padding-bottom: 0;
  }
  .footer .links {
    margin: 0;
  }
  .footer .email-marketing {
    margin-top: 30px;
  }
  .footer .copyright {
    flex-direction: column;
  }
}
/*#endregion -------------- Footer */
/*#region ----------------- Forms */
.inputgroup {
  position: relative;
  margin-bottom: 1.2rem;
}
.inputgroup label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  padding-left: 5px;
}
.inputgroup .input {
  width: 100%;
  height: 50px;
  border: 2px solid #20ade5;
  border-radius: 0.6rem;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: right;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.2s ease-in-out;
}
.inputgroup .input:focus, .inputgroup .input:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.inputgroup .msg-alert {
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  margin: 5px 0;
}
.inputgroup .msg-alert.error {
  color: #ef4444;
}
.inputgroup .msg-alert.success {
  color: #00b854;
}
.inputgroup.center .input {
  text-align: center;
  padding: 3px 15px 3px 15px;
}

.checkbox-group {
  margin: 10px 0;
}
.checkbox-group .form-check-label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
  padding-right: 10px;
}
.checkbox-group .form-check-input {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  float: right;
  background-color: transparent;
}
.checkbox-group .form-check-input::before {
  content: "";
  font-family: uicons-regular-straight;
  font-size: 12px;
}
.checkbox-group .form-check-input:checked {
  border-color: #00234b;
  background-color: #00234b;
}
.checkbox-group .form-check-input:checked::before {
  content: "שׂ";
  color: white;
}
.checkbox-group .form-check-input:hover, .checkbox-group .form-check-input:focus {
  box-shadow: none;
}
.checkbox-group.margin-top {
  margin-top: 35px;
}

.textarea-group {
  margin-bottom: 1.2rem;
}
.textarea-group label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  padding-left: 5px;
}
.textarea-group .textarea {
  width: 100%;
  border: 2px solid #20ade5;
  border-radius: 0.6rem;
  padding: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0);
}
.textarea-group .textarea:focus, .textarea-group .textarea:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.select-group {
  position: relative;
  margin-bottom: 1.2rem;
}
.select-group label {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  padding-right: 10px;
}
.select-group .select {
  height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 15px 5px 40px;
  color: #fff;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23aaa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 16px 12px;
}
.select-group .select:focus, .select-group .select:hover {
  border-color: #00234b;
  box-shadow: 0 5px 30px rgba(0, 35, 75, 0.4);
  background-color: #1b1b25;
}

.form-check {
  padding-left: 2em;
}
.form-check .form-check-label {
  cursor: pointer;
}
.form-check .form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  margin-top: 0.14em;
  margin-left: -2em;
}
.form-check .form-check-input:checked {
  background-color: #20ade5;
  border-color: #20ade5;
}

/*#endregion -------------- Forms */
/*#region ----------------- Page Header */
.page-header {
  margin: 200px 0 80px 0;
}
.page-header .inner {
  text-align: center;
}
.page-header .inner h1,
.page-header .inner h2 {
  color: #20ade5;
  margin-bottom: 15px;
}
.page-header .inner h3,
.page-header .inner h4,
.page-header .inner h5,
.page-header .inner h6,
.page-header .inner p {
  font-size: 18px;
  color: white;
}
.page-header .search-content {
  width: 600px;
  margin: 0 auto;
}
.page-header .search-content .input-search {
  position: relative;
}
.page-header .search-content .input-search .input {
  width: 100%;
  height: 50px;
  border-radius: 10rem;
  border: 2px solid #20ade5;
  background-color: transparent;
  color: white;
  padding: 5px 55px 5px 20px;
}
.page-header .search-content .input-search .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  font-size: 28px;
  border-radius: 50%;
  background-color: transparent;
  color: #20ade5;
  border: none;
  transition: all 0.3s ease-in-out;
}
.page-header .search-content .input-search .btn-search:hover {
  background-color: #20ade5;
  color: white;
}

@media (max-width: 1199px) {
  .page-header {
    margin: 180px 0 90px 0;
  }
  .page-header .inner h1,
  .page-header .inner h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 992px) {
  .page-header {
    margin: 180px 0 90px 0;
  }
  .page-header .inner h1,
  .page-header .inner h2 {
    font-size: 2rem;
  }
  .page-header .inner h3,
  .page-header .inner h4,
  .page-header .inner h5,
  .page-header .inner h6,
  .page-header .inner p {
    font-size: 16px;
  }
  .page-header .search-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-header {
    margin: 170px 0 80px 0;
  }
  .page-header .inner h1,
  .page-header .inner h2 {
    font-size: 1.8rem;
  }
  .page-header .inner h3,
  .page-header .inner h4,
  .page-header .inner h5,
  .page-header .inner h6,
  .page-header .inner p {
    font-size: 14px;
  }
}
/*#endregion -------------- Page Header */
/*#region ----------------- Pagination */
.myPagination {
  margin-top: 40px;
}
.myPagination .page-link {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 8px 16px;
}
.myPagination .page-link:hover, .myPagination .page-link:focus {
  background-color: #20ade5;
  color: white;
  box-shadow: none;
}

/*#endregion -------------- Pagination */
