/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
    padding: 0 145px;
    background-color: #ffffff;
}
@media (max-width: 1650px) {
  .topbar-one {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .topbar-one {
    display: none;
  }
}
.topbar-one__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 13px 40px;
}
.topbar-one__info {
  display: flex;
  align-items: center;
  margin: 0;
}
.topbar-one__info__item {
    display: flex
;
    align-items: center;
    font-size: 16px;
    color: #000000;
    line-height: 1.2em;
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item + .topbar-one__info__item {
  margin-left: 30px;
}
.topbar-one__info__icon {
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.topbar-one__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.topbar-one__social {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1em;
}
.topbar-one__social a {
    width: 30px;
    height: 30px;
    border: 1px solid #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2196f3;
    transition: all 500ms ease;
}
.topbar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.topbar-one__social a:hover {
  color: var(--ienet-base, #DF2339);
  border-color: var(--ienet-white, #fff);
  background-color: var(--ienet-white, #fff);
}
.topbar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.topbar-one--inner {
  position: relative;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
}
footer.main-footer.background-black {
    background: #1d2225!important;
}
.main-footer__top {
  position: relative;
  margin-bottom: 60px;
}
.main-footer__top__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    border-radius: 0 0 100px 100px;
    padding: 13px 40px;
}

@media (max-width: 767px) {
  .main-footer__top__inner {
    padding: 13px 20px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
.main-footer__top__info {
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767px) {
  .main-footer__top__info {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}
.main-footer__top__info__item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000000;
    line-height: 1.2em;
}
.main-footer__top__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer__top__info__item a:hover {
  background-size: 100% 1px;
}
.main-footer__top__info__item + .main-footer__top__info__item {
  margin-left: 30px;
}
.main-footer__top__info__icon {
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.main-footer__top__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  .main-footer__top__right {
    margin: 0;
  }
}
.main-footer__top__social {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1em;
}
.main-footer__top__social a {
    width: 30px;
    height: 30px;
    border: 1px solid #2196F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2196F3;
    transition: all 500ms ease;
}
.main-footer__top__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-footer__top__social a:hover {
  color: var(--ienet-base, #DF2339);
  border-color: var(--ienet-white, #fff);
  background-color: var(--ienet-white, #fff);
}
.main-footer__top__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: center center;
}
.main-footer__shape-one {
  position: absolute;
  left: 1.5%;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  animation: shapeMove 3s linear 0s infinite;
  display: none;
}
@media (min-width: 1600px) {
  .main-footer__shape-one {
    display: block;
  }
}
.main-footer__shape-two {
  position: absolute;
  right: 1.5%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  animation: shapeMove 3s linear 0s infinite;
  display: none;
}
@media (min-width: 1600px) {
  .main-footer__shape-two {
    display: block;
  }
}
.main-footer .container {
  position: relative;
}
.main-footer__middle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(var(--ienet-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 991px) {
  .main-footer__middle {
    flex-direction: column;
  }
}
.main-footer__middle__call {
  position: relative;
  min-height: 40px;
  padding: 5px 0 0 66px;
}
.main-footer__middle__call__icon {
  width: 40px;
  height: 40px;
  background-color: var(--ienet-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ienet-base, #DF2339);
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.main-footer__middle__call__icon::after {
  position: absolute;
  left: -11px;
  top: -11px;
  width: calc(100% + 22px);
  height: calc(100% + 22px);
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(var(--ienet-white-rgb, 255, 255, 255), 0.15);
}
.main-footer__middle__call__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-footer__middle__call:hover .main-footer__middle__call__icon span {
  animation: iconTranslateY 0.4s forwards;
}
.main-footer__middle__call__title {
  line-height: 1;
  display: block;
  margin: 0 0 7px;
  font-size: 14px;
  color: var(--ienet-white, #fff);
}
.main-footer__middle__call__text {
  line-height: 1.2;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--ienet-white, #fff);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer__middle__call__text:hover {
  background-size: 100% 1px;
}
.main-footer__middle__call__text:hover {
  color: var(--ienet-base, #DF2339);
}
.main-footer__bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--ienet-white-rgb, 255, 255, 255), 0.1);
}
.main-footer__bottom__inner {
  padding: 26px 0;
}
.main-footer__copyright {
  margin: 0;
  font-size: 16px;
  color: var(--ienet-text-dark, #9C93AE);
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 30px;
}
.footer-widget__newsletter {
  position: relative;
  width: 60.7%;
}
@media (max-width: 1199px) {
  .footer-widget__newsletter {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .footer-widget__newsletter {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .footer-widget__newsletter {
    width: 100%;
  }
}
.footer-widget__newsletter__icon {
  position: absolute;
  font-size: 18px;
  color: var(--ienet-text, #737177);
  left: 22px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-widget__newsletter__icon {
    display: none;
  }
}
.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 63px;
  background-color: var(--ienet-white, #fff);
  color: rgba(var(--ienet-text-rgb, 115, 113, 119), 0.5);
  font-size: 16px;
  font-weight: 400;
  padding-left: 58px;
  padding-right: 20px;
  border-radius: 6px;
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .footer-widget__newsletter input[type=text] {
    padding-left: 30px;
  }
}
.footer-widget__newsletter input[type=text]:focus {
  color: rgba(var(--ienet-text-rgb, 115, 113, 119), 1);
}
.footer-widget__newsletter button[type=submit] {
  background-color: rgba(var(--ienet-base-rgb, 223, 35, 57), 0.12);
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--ienet-base, #DF2339);
  position: absolute;
  top: 50%;
  padding: 8px 30px;
  right: 10px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .footer-widget__newsletter button[type=submit] {
    padding: 8px 15px;
  }
}
.footer-widget__newsletter button[type=submit]:hover {
  color: var(--ienet-white, #fff);
}
.footer-widget__newsletter button[type=submit]::after, .footer-widget__newsletter button[type=submit]::before {
  border-top: 25px solid var(--ienet-base, #DF2339);
  border-bottom: 25px solid var(--ienet-base, #DF2339);
}
.footer-widget__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--ienet-white, #fff);
    text-transform: capitalize;
    margin: 0;
    margin-top: -5px;
    margin-bottom: 25px;
    font-family: "Nunito" !important;
    position: relative;
}

.footer-widget__info, .footer-widget__links {
  margin-top: -14px;
  margin-bottom: -13px;
}
.footer-widget__info li, .footer-widget__links li {
  font-size: 17px;
color: #9da5a9;
  font-weight: 400;
  line-height: 38px;
}
.footer-widget__info li a, .footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__info li a:hover, .footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__info li a:hover, .footer-widget__links li a:hover {
  color: var(--ienet-white, #fff);
}
.footer-widget--about {
  position: relative;
}
.footer-widget--about .ienet-btn {
    background-color: transparent;
    border: 1px solid #2196F3;
    color: #2196F3;
    padding: 6px 20px;
}
.footer-widget--about .ienet-btn::after, .footer-widget--about .ienet-btn::before {
  border-bottom-color: var(--ienet-base, #DF2339);
  border-top-color: var(--ienet-base, #DF2339);
}
.footer-widget--about .ienet-btn:hover {
  color: var(--ienet-white, #fff);
}
.footer-widget__text {
    color: #9da5a9;
    margin: 0;
    margin-top: -9px;
    margin-bottom: 32px;
    font-size: 17px;
}
.footer-widget__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-widget__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ienet-black2, #141215);
  font-size: 14px;
  color: var(--ienet-white, #fff);
  transition: all 500ms ease;
  border-radius: 50%;
}
.footer-widget__social a:hover {
  background-color: var(--ienet-base, #DF2339);
  color: var(--ienet-white, #fff);
}
