/*#region ----------------- General */
@import url(../css/fontface.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: Shabnam !important;
  font-weight: 400;
  direction: rtl;
  margin: 0;
  background-color: #fff;
  text-align: right;
  font-size: 1rem;
}

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 {
  color: #1e1e1e;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-weight: 800 !important;
  line-height: normal;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

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

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

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;
}

button {
  cursor: pointer;
}

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;
}

::selection {
  background-color: #149bdb;
  color: white;
}

.fi {
  display: inline-block !important;
  line-height: 0 !important;
}

.fixed-position {
  overflow: hidden;
}

/*#endregion -------------- General */
/*#region ----------------- Animation */
.smooth-anim-3s {
  transition: all 0.3s ease-in-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.7);
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes swipeup {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeupsmall {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes swipeRightsmall {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes swipeLeftsmall {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotatebg {
  from {
    transform: translate(50%, -50%) rotate(0);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes swipeUpDown {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: translate(50%, -50%) scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: translate(50%, -50%) scale3d(2.5, 2.5, 1);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  font-size: 1rem;
  padding: 0.875rem 1.2rem;
  border-radius: 50rem;
  border: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease-in-out;
  display: inline-block;
  line-height: 1.25rem;
  text-align: center;
  z-index: 1;
  vertical-align: middle;
  cursor: pointer;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.625rem;
  height: 2.625rem;
  z-index: -1;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
  border-radius: 50px;
}
.btn .fi {
  font-size: 1.375rem;
  line-height: 0;
}
.btn.no-icon::after {
  display: none;
}

.icon-right {
  padding-right: 3.5rem;
}
.icon-right::after {
  right: 0.25rem;
}
.icon-right .fi {
  position: absolute;
  right: 0.85rem;
}

.icon-left {
  padding-left: 3.5rem;
}
.icon-left::after {
  left: 0.25rem;
}
.icon-left .fi {
  position: absolute;
  left: 0.85rem;
}

.btn-primary {
  background-color: #149bdb;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #149bdb;
  color: white;
}
.btn-primary::after {
  background: white;
}
.btn-primary .fi {
  color: #149bdb;
}

.btn-secondary {
  background-color: #164da7;
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #164da7;
  color: white;
}
.btn-secondary::after {
  background-color: rgba(255, 255, 255, 0.2);
}

/*#endregion -------------- Buttons */
/*#region ----------------- Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle.icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown .dropdown-toggle .fi {
  font-size: 24px;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  display: none;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  z-index: 1;
  text-align: right;
  padding: 5px;
}
.dropdown .dropdown-menu.menu-left {
  left: unset;
  right: 0;
}
.dropdown .dropdown-menu .dropdown-item {
  padding: 8px 10px;
  text-decoration: none;
  color: #1e1e1e;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: rgba(20, 155, 219, 0.1);
  color: #149bdb;
}
.dropdown .dropdown-menu .dropdown-item:hover .fi {
  color: #149bdb;
}
.dropdown .dropdown-menu .dropdown-item .fi {
  margin-left: 10px;
  font-size: 18px;
  position: relative;
  top: 3px;
  color: #818283;
}
.dropdown .dropdown-menu.open {
  display: flex;
}

/*#endregion -------------- Dropdown */
/*#region ----------------- Navbar */
.navbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 555;
}
.navbar.is-scroll {
  background-color: white;
}
.navbar.is-scroll .nav-links ul li a {
  color: white;
}
.navbar .nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 0;
}
.navbar .nav-logo a {
  display: block;
  width: 160px;
}
.navbar .nav-logo a img {
  width: 100%;
}
.navbar .nav-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar .nav-links ul li a {
  display: block;
  padding: 20px 10px;
  color: white;
}
.navbar .nav-actions {
  text-align: left;
}
.navbar .nav-actions .btn-primary {
  background-color: white;
  color: #1e1e1e;
}
.navbar .nav-actions .btn-primary::after {
  background: linear-gradient(180deg, #149bdb, #164da7);
}
.navbar .nav-actions .btn-primary .fi {
  color: white;
}
.navbar .nav-mobile-menu {
  display: none;
}
.navbar .btn-show-menu {
  width: 40px;
  height: 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .navbar {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar .nav-inner {
    grid-template-columns: 65px 120px 1fr;
    padding: 0;
  }
  .navbar .nav-mobile-menu {
    display: block;
  }
  .navbar .nav-logo a {
    width: 120px;
  }
  .navbar .nav-links {
    display: none;
  }
  .navbar .nav-actions .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 14px;
  }
  .navbar .nav-actions .btn-primary::after {
    width: 2rem;
    height: 2rem;
  }
  .navbar .nav-actions .btn-primary .fi {
    font-size: 1.3rem;
  }
  .navbar .nav-actions .btn-primary.icon-left {
    padding-left: 2.8rem;
  }
  .navbar .nav-actions .btn-primary.icon-left .fi {
    left: 0.55rem;
  }
  .navbar .btn-show-menu {
    height: 80px;
  }
}
@media (max-width: 640px) {
  .navbar .nav-inner {
    grid-template-columns: 60px 100px 1fr;
  }
  .navbar .nav-logo a {
    width: 100px;
  }
  .navbar .btn-show-menu {
    height: 70px;
  }
}
/*#endregion -------------- Navbar */
/*#region ----------------- Hero */
.hero-home {
  padding-top: 200px;
  position: relative;
}
.hero-home::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/hero-bg-min.png);
  background-repeat: no-repeat;
  background-position: top center;
}
.hero-home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background-image: url(../images/bg/shape-up-grey.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.hero-home .section-inner {
  position: relative;
  padding-bottom: 120px;
}
.hero-home .text-content {
  margin: 50px 0 0 0;
}
.hero-home .text-content h2 {
  color: #66e8ff;
  font-weight: 600;
}
.hero-home .text-content h1 {
  color: white;
}
.hero-home .text-content p {
  color: white;
  font-size: 20px;
  margin: 30px 0;
}
.hero-home .text-content .btn-primary {
  background-color: white;
  color: #1e1e1e;
}
.hero-home .text-content .btn-primary::after {
  background: linear-gradient(180deg, #149bdb, #164da7);
}
.hero-home .text-content .btn-primary .fi {
  color: white;
}
.hero-home .image-content .img-inner {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .hero-home {
    padding-top: 170px;
  }
  .hero-home::after {
    height: 110px;
  }
  .hero-home .section-inner {
    padding-bottom: 70px;
  }
  .hero-home .text-content {
    margin-top: 30px;
  }
  .hero-home .text-content h2 {
    font-size: 1.8rem;
  }
  .hero-home .text-content h1 {
    font-size: 2.2rem;
  }
  .hero-home .text-content p {
    font-size: 18px;
  }
  .hero-home .image-content .img-inner {
    width: 75%;
  }
}
@media (max-width: 1024px) {
  .hero-home {
    padding-top: 130px;
  }
  .hero-home::after {
    height: 100px;
  }
  .hero-home .text-content {
    text-align: center;
  }
  .hero-home .text-content h2 {
    font-size: 1.6rem;
  }
  .hero-home .text-content h1 {
    font-size: 2rem;
  }
  .hero-home .text-content p {
    font-size: 16px;
    margin: 20px 0 30px 0;
  }
  .hero-home .image-content {
    margin-top: 30px;
  }
  .hero-home .image-content .img-inner {
    width: 400px;
  }
}
@media (max-width: 768px) {
  .hero-home::after {
    height: 80px;
  }
  .hero-home .section-inner {
    padding-bottom: 50px;
  }
  .hero-home .image-content {
    margin-top: 30px;
  }
  .hero-home .image-content .img-inner {
    width: 300px;
  }
}
@media (max-width: 640px) {
  .hero-home {
    padding-top: 120px;
  }
  .hero-home::after {
    height: 50px;
  }
  .hero-home .section-inner {
    padding-bottom: 30px;
  }
  .hero-home .text-content h2 {
    font-size: 1.4rem;
  }
  .hero-home .text-content h1 {
    font-size: 1.8rem;
  }
  .hero-home .text-content p {
    font-size: 14px;
    margin: 15px 0 20px 0;
  }
}
@media (max-width: 350px) {
  .hero-home::after {
    height: 100px;
  }
  .hero-home .image-content .img-inner {
    width: 90%;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Page Title */
.page-title {
  margin-bottom: 3rem;
  padding: 8px 20px;
  text-align: center;
  position: relative;
}
.page-title.align-right {
  text-align: right;
}
.page-title h2 {
  font-size: 1.8rem;
  color: #1e1e1e;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
}
.page-title h2::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 100%;
  display: block;
  border-radius: 5rem;
  background: linear-gradient(180deg, #149bdb, #164da7);
}
.page-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .page-title h2 {
    font-size: 1.6rem;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .page-title {
    text-align: right;
    margin-bottom: 2rem;
  }
  .page-title h2 {
    font-size: 1.4rem;
    line-height: 38px;
  }
  .page-title p {
    font-size: 14px;
  }
}
/*#endregion -------------- Page Title */
/*#region -----------------  */
.page-section {
  margin: 80px 0;
  position: relative;
}
.page-section.bg-grey {
  margin: 0;
  padding: 80px 0;
  background-color: #f4f7fe;
}
.page-section.has-bottom-shape {
  padding-bottom: 170px;
}
.page-section .shape-bottom {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-image: url(../images/bg/shape-up-white.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.qualification-section .section-inner {
  background-color: #ecf3ff;
  border-radius: 60px;
  padding: 50px;
}
.qualification-section .page-title {
  margin-bottom: 1rem;
}
.qualification-section .page-title h2 {
  color: #149bdb;
}
.qualification-section .text p {
  text-align: justify;
  font-size: 18px;
  line-height: 30px;
}
.qualification-section .btns-action {
  text-align: center;
}

.card-qualification {
  margin-top: 20px;
}
.card-qualification .card-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  border-radius: 20px;
  padding: 30px;
}
.card-qualification .icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
}
.card-qualification .icon img {
  width: 100%;
}
.card-qualification .info {
  margin-top: 15px;
}
.card-qualification .info h4 {
  text-align: center;
  font-size: 18px;
}
.card-qualification .info ul {
  margin-top: 15px;
}
.card-qualification .info ul li {
  margin: 8px 0;
  font-size: 16px;
  position: relative;
  padding-right: 24px;
}
.card-qualification .info ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f9c900;
}

@media (max-width: 1280px) {
  .qualification-section .section-inner {
    padding: 40px;
  }
}
@media (max-width: 1024px) {
  .page-section {
    margin: 60px 0;
  }
  .qualification-section .section-inner {
    padding: 30px;
    border-radius: 50px;
  }
  .qualification-section .text p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-section.has-bottom-shape {
    padding-bottom: 100px;
  }
  .page-section .shape-bottom {
    height: 70px;
  }
  .qualification-section .section-inner {
    border-radius: 40px;
  }
  .qualification-section .text p {
    font-size: 14px;
  }
  .card-qualification .card-inner {
    padding: 20px;
    border-radius: 15px;
  }
  .card-qualification .info {
    margin-top: 10px;
  }
  .card-qualification .info h4 {
    font-size: 16px;
  }
  .card-qualification .info ul li {
    margin: 6px;
    font-size: 14px;
  }
  .card-qualification .info ul li::before {
    width: 10px;
    height: 10px;
  }
}
/*#endregion --------------  */
/*#region ----------------- Features */
.card-feature {
  margin-bottom: 20px;
}
.card-feature .card-inner {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.05);
}
.card-feature .thumb {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  padding: 18px;
  background: linear-gradient(180deg, #149bdb, #164da7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-feature .thumb img {
  width: 100%;
}
.card-feature .info {
  margin-top: 15px;
}
.card-feature .info h3 {
  font-size: 18px;
  text-align: center;
}
.card-feature .info p {
  font-size: 14px;
  text-align: justify;
  margin-bottom: 0;
}

@media (max-width: 1280px) {
  .card-feature .info p {
    min-height: 150px;
  }
}
@media (max-width: 1024px) {
  .card-feature .info p {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .card-feature .card-inner {
    padding: 20px;
  }
  .card-feature .thumb {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
  .card-feature .info h3 {
    font-size: 16px;
  }
  .card-feature .info p {
    min-height: unset;
  }
}
/*#endregion -------------- Features */
/*#region ----------------- Headlines */
.headlines-section .section-inner {
  background: linear-gradient(180deg, #149bdb, #164da7);
  width: 80%;
  margin: 0 auto;
  border-radius: 50rem 50rem 50rem 0;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.headlines-section .section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/orib-lines-white.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.headlines-section .headlines-images {
  position: relative;
}
.headlines-section .headlines-images .img-inner img {
  width: 100%;
}
.headlines-section .headlines-content {
  margin-right: 30px;
  position: relative;
}
.headlines-section .headlines-content ul li {
  position: relative;
  padding-right: 34px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 20px 0;
}
.headlines-section .headlines-content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/check-circle.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 1280px) {
  .headlines-section .section-inner {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .headlines-section .section-inner {
    border-radius: 8rem 8rem 8rem 0;
    padding: 30px 30px 40px 30px;
  }
  .headlines-section .headlines-images .img-inner {
    width: 220px;
    margin: 0 auto;
  }
  .headlines-section .headlines-content {
    margin-right: 0;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .headlines-section .section-inner {
    border-radius: 6rem 6rem 6rem 0;
    padding: 20px 20px 40px 20px;
  }
  .headlines-section .headlines-images .img-inner {
    width: 200px;
  }
  .headlines-section .headlines-content {
    margin-right: 0;
    padding: 0 20px;
  }
  .headlines-section .headlines-content ul li {
    font-size: 16px;
    margin: 15px 0;
  }
  .headlines-section .headlines-content ul li::before {
    width: 20px;
    height: 20px;
  }
}
/*#endregion -------------- Headlines */
/*#region ----------------- Teacher */
.teacher-section {
  position: relative;
}
.teacher-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 250px;
  height: 500px;
  background-image: url(../images/bg/dots-curve.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  opacity: 0.5;
}
.teacher-section .section-inner {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.teacher-section .text-content {
  padding-left: 30px;
}
.teacher-section .text-content .title {
  margin-bottom: 30px;
}
.teacher-section .text-content .title h3 {
  color: #164da7;
}
.teacher-section .text-content .title p {
  font-size: 20px;
}
.teacher-section .text-content .list li {
  position: relative;
  padding-right: 34px;
  font-size: 18px;
  font-weight: 500;
  color: #1e1e1e;
  margin: 15px 0;
  line-height: 30px;
}
.teacher-section .text-content .list li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #149bdb, #164da7);
}
.teacher-section .image-content .img-inner {
  width: 90%;
  margin: 0 auto;
}
.teacher-section .image-content .img-inner img {
  width: 100%;
}

@media (max-width: 1280px) {
  .teacher-section .section-inner {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .teacher-section .text-content {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .teacher-section .text-content .title h3 {
    font-size: 1.3rem;
  }
  .teacher-section .text-content .title p {
    font-size: 18px;
  }
  .teacher-section .text-content .list li {
    font-size: 16px;
    line-height: 26px;
    margin: 10px 0;
  }
  .teacher-section .text-content .list li::before {
    width: 20px;
    height: 20px;
  }
  .teacher-section .image-content .img-inner {
    width: 400px;
  }
}
@media (max-width: 640px) {
  .teacher-section .image-content .img-inner {
    width: 80%;
  }
}
/*#endregion -------------- Teacher */
/*#region ----------------- Forms */
.input-group {
  position: relative;
  margin-bottom: 20px;
}
.input-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  padding-right: 20px;
}
.input-group .input {
  width: 100%;
  height: 48px;
  padding: 5px 15px;
  font-size: 16px;
  font-weight: 400;
  color: #1e1e1e;
  border-radius: 50px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.input-group .input:hover, .input-group .input:focus {
  border-color: #149bdb;
}

/*#endregion -------------- Forms */
/*#region ----------------- Contact */
.form-contact {
  margin: 80px 0;
}
.form-contact .section-inner {
  width: 60%;
  margin: 0 auto;
  border: 1px solid #d2d2d2;
  border-radius: 30px;
  padding: 30px;
}

@media (max-width: 1280px) {
  .form-contact .section-inner {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .form-contact {
    margin: 60px 0;
  }
  .form-contact .section-inner {
    width: 100%;
    padding: 30px 20px;
  }
}
@media (max-width: 768px) {
  .form-contact .section-inner {
    width: 100%;
    padding: 30px 10px;
  }
}
/*#endregion -------------- Contact */
/*#region ----------------- Footer */
.footer {
  padding-bottom: 50px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 288px;
  background-image: url(../images/bg/elec-2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
.footer .footer-inner {
  width: 60%;
  margin: 0 auto;
}

.card-contact {
  margin-bottom: 20px;
}
.card-contact .card-inner {
  display: grid;
  grid-template-columns: auto 58px;
  align-items: center;
  border-radius: 20px;
  padding: 20px;
  background-color: #e7f5fc;
  transition: all 0.3s ease-in-out;
}
.card-contact .icon {
  width: 58px;
  height: 58px;
  color: #149bdb;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.card-contact .icon .fi {
  display: flex;
}
.card-contact .info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.card-contact .info p {
  margin-bottom: 0;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.card-contact:hover .card-inner {
  background-color: #149bdb;
}
.card-contact:hover .icon {
  color: white;
}
.card-contact:hover .info h4,
.card-contact:hover .info p {
  color: white;
}
.card-contact:hover .info p {
  opacity: 0.8;
}

@media (max-width: 1280px) {
  .footer .footer-inner {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .footer .footer-inner {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .card-contact .card-inner {
    grid-template-columns: auto 48px;
    padding: 10px 20px 10px 10px;
  }
  .card-contact .icon {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
  .card-contact .info h4 {
    font-size: 16px;
  }
  .card-contact .info p {
    font-size: 14px;
  }
}
/*#endregion -------------- Footer */

/*# sourceMappingURL=main.css.map */
