@charset "UTF-8";
:root {
  --theme-bg-theme-dark: #0a363a;
  --theme-bg-theme-true-black: #212721;
  --theme-bg-theme-gray: #E7E5DF;
  --theme-bg-theme-gray-50: #F8F7F6;
  --theme-bg-theme-white: #fff;
  --theme-bg-theme-electric-green: #00d66b;
  --theme-bg-theme-emerald-green: #159579;
  --theme-bg-theme-forest-green: #0A363A;
  --theme-text-theme-dark: #0a363a;
  --theme-text-electric-green: #00d66b;
  --theme-text-emerald-green: #159579;
  --theme-nav-link-color: #212721;
  --theme-nav-link-font-size: 16px;
  --theme-border-electric-green: #00d66b;
  --theme-border-emerald-green: #159579;
  --theme-border-white: #fff;
  --theme-fw-700: 700;
  --theme-border-radius: 50px;
}

body {
  color: #212721;
}
body a {
  text-decoration: none;
  transition: 1s;
}
body h1 {
  font-size: 50px;
  font-family: "Hero New";
  font-weight: 600;
}
body h2 {
  font-size: 35px;
  font-family: "Hero New";
  font-weight: 600;
  color: #212721;
}
body h3 {
  font-size: 28px;
  font-family: "Hero New";
  font-weight: 600;
  color: #212721;
}
body h5 {
  font-size: 20px;
  font-family: "FSAlbert";
  font-weight: 700;
  color: #212721;
}
body p {
  font-family: "FSAlbert";
  font-size: 16px;
}
body strong {
  font-weight: 600;
}
body .fs-14 {
  font-size: 14px;
}
body .section {
  padding: 80px 0px;
}
body .text-electric-green {
  color: var(--theme-text-electric-green) !important;
}
body .text-emerald-green {
  color: var(--theme-text-emerald-green) !important;
}
body .bg-electric-green {
  background: var(--theme-bg-theme-electric-green);
}
body .bg-emerald-green {
  background: var(--theme-bg-theme-emerald-green);
}
body .bg-trueblack {
  background: var(--theme-bg-theme-true-black);
}
body .bg-gray {
  background: var(--theme-bg-theme-gray);
}
body .bg-gray-50 {
  background: var(--theme-bg-theme-gray-50);
}
/* body .btn {
  padding: 0px;
} */
body .btn-round {
  border-radius: var(--theme-border-radius);
  border: 1px solid var(--theme-border-electric-green);
  color: var(--theme-text-electric-green) !important;
  font-family: "FSAlbert";
  font-weight: 700;
  height: 35px;
  width: fit-content;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}
body .btn-round:hover {
  background: var(--theme-bg-theme-electric-green);
  color: #fff !important;
}
body .btn-green {
  border-radius: var(--theme-border-radius);
  border: 1px solid var(--theme-border-electric-green);
  color: #fff;
  background: var(--theme-bg-theme-electric-green);
  font-family: "FSAlbert";
  font-weight: 700;
  height: 35px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}
body .btn-green:hover {
  background: var(--theme-bg-theme-electric-green);
  color: #fff !important;
  opacity: 0.9;
}
body .btn-emarald {
  background: var(--theme-bg-theme-emerald-green);
}
body .btn-emarald:hover {
  background: #106854;
  border-color: #106854;
}
body .btn-round-white {
  font-family: "FSAlbert";
  border-radius: var(--theme-border-radius);
  border: 1px solid var(--theme-border-white);
  color: #fff !important;
  padding: 6px 25px 8px 25px;
}
body .btn-round-white:hover {
  background: var(--theme-bg-theme-electric-green);
  border: 1px solid var(--theme-border-electric-green);
}
body .form-control:focus {
  box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  background-color: transparent;
}
body .border-bx {
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
}
body .border-s {
  border-left: 1px solid #707070;
}

.topbar {
  background: var(--theme-bg-theme-dark);
  color: #fff;
}
.topbar a {
  font-family: "FSAlbert";
  color: #fff;
  font-size: 15px;
}
.topbar .myac {
  padding-right: 4px;
  transition: 1s;
}
.topbar .myac:hover {
  transition: 1s;
  text-decoration: underline;
}
.topbar .list-inline-item:not(:last-child) {
  margin-right: 0;
}
.topbar .list-top li a {
  font-family: "FSAlbert";
  text-transform: uppercase;
  padding: 12px 20px;
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: var(--theme-fw-700);
}
.topbar .list-top li a.active {
  background: var(--theme-bg-theme-white);
  color: var(--theme-text-theme-dark);
}
.topbar .list-top li a:hover {
  background: var(--theme-bg-theme-white);
  color: var(--theme-text-theme-dark);
}
.topbar .searchBox {
  position: absolute;
  bottom: -19px;
  right: 0px;
  background: transparent;
  border-radius: 40px;
  padding: 4px;
}
.topbar .searchInput {
  border: none;
  border-radius: 50px;
  outline: none;
  float: right;
  padding: 0;
  font-size: 16px;
  transition: 0.4s;
  line-height: 30px;
  width: 0px;
}
.topbar .searchButton {
  color: white;
  float: left;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.topbar .searchBox:hover {
  background: #fff;
}
.topbar .searchBox:hover > .searchInput {
  width: 240px;
  padding: 0 6px;
}
.topbar .searchBox:hover > .searchButton {
  color: #2f3640;
  border: 0px;
}

.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.3s;
  transform: 0.3s;
}

.navbar {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background: #fff;
  font-family: FSAlbert;
}
.navbar .nav-item {
  padding: 0px 20px;
}
.navbar .header-contact-us {
  padding-right: 0px !important;
}
.navbar .dropdown-mega:hover .dropdown-toggle:before {
  width: 100%;
}
.navbar .dropdown-mega:hover .dropdown-menu {
  display: block;
}
.navbar .dropdown-mega .dropdown-toggle::after {
  display: none;
}
.navbar .dropdown-mega .dropdown-menu {
  width: 100%;
  margin: 0px;
  left: 0;
  background: transparent;
}
.navbar .dropdown-mega .dropdown-menu a {
  color: #212721;
}
.navbar .dropdown-mega .dropdown-menu a:hover {
  color: var(--theme-text-electric-green);
}
.navbar .dropdown-mega .dropdown-menu h4 {
  letter-spacing: 0.5px;
  font-family: "FSAlbert";
  font-size: 14px;
  font-weight: 700;
}
.navbar .dropdown-mega .dropdown-menu .list-megamenu li {
  margin-bottom: 7px;
}
.navbar .dropdown-mega .dropdown-menu .list-megamenu li a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #212721;
  font-weight: 400;
  font-family: "FSAlbert";
}
.navbar .dropdown-mega .dropdown-menu .list-megamenu li a:hover {
  color: var(--theme-text-electric-green);
}

.nav-link {
  position: relative;
  display: block;
  padding: 25px 0px !important;
  font-size: var(--theme-nav-link-font-size);
  font-weight: 700;
  color: var(--theme-nav-link-color);
}
.nav-link:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 0px;
  height: 4px;
  background: #22D66B;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.nav-link:hover {
  transition: 0.8s;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}
.nav-link:hover:before {
  width: 100%;
}

.btn-round {
  padding: 6px 22px !important;
  font-size: 14px;
}
.btn-round:hover {
  color: #fff !important;
}
.btn-round:hover:before {
  width: 0px;
}

.toggle-button {
  display: none;
  top: 58px;
  right: 6px;
  padding: 1px 6px;
  height: 17px;
  width: 35px;
  cursor: pointer;
  z-index: 30;
}
.toggle-button .bar {
  background-color: #212721;
  display: block;
  width: 100%;
  height: 2px;
  border: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.toggle-button .bar + .bar {
  margin-top: 6px;
}
.toggle-button .middle {
  top: 11px;
  width: 85% !important;
  margin-left: auto;
}
.toggle-button .bottom {
  top: 22px;
  width: 70% !important;
  margin-left: auto;
}

.toggle-active .top {
  -webkit-transform: translateY(6px) translateX(0) rotate(45deg);
}

.toggle-active .bar {
  background-color: #fff;
}

.toggle-active .middle {
  opacity: 0;
}

.toggle-active .bottom {
  width: 100% !important;
  -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
}

.toggle-active .bar {
  background-color: #fff;
}

.toggle-active .middle {
  opacity: 0;
}

.toggle-active .bottom {
  width: 100% !important;
  -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
}

.toggle-active .bar {
  background-color: #051b2a;
}

.nav-active {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto;
}

.overlay {
  border-top: 1px solid #ccc;
  position: absolute;
  background: #fff;
  top: 97px;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  padding: 15px 0px 15px 0px;
  -webkit-transition: opacity 0.35s, visibility 0.35s, height 0.35s;
}

.overlay .nav-item {
  border-bottom: 1px solid #ccc;
}

.overlay a.nav-link {
  font-family: "FSAlbert";
  font-size: 14px;
  font-weight: 700;
  padding: 15px !important;
}

.list-mob li a {
  font-family: "FSAlbert";
  font-size: 14px;
  color: #212721;
  display: block;
  padding: 5px 20px 5px 25px;
}

.overlay .nav-link:focus, .overlay .nav-link:hover {
  text-decoration: none;
  color: #000;
}

[data-bs-toggle=collapse] .fa:before {
  content: "";
}

[data-bs-toggle=collapse].collapsed .fa:before {
  content: "";
}

.banner {
  background: url("../../assets/img/business/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
}
.banner .link-light {
  transition: 2s ease-in-out;
}
.banner .link-light:hover {
  transition: 2s ease-in-out;
  text-decoration: underline;
}
.banner .link-light:hover i {
  padding-left: 3px;
}

.banner-full {
  background-size: cover!important;
  background-position: center!important;
  height: 500px;
  display: flex;
  align-items: center;
}

.sec-business {
  background: var(--theme-bg-theme-gray);
  padding: 80px 0px;
}
.sec-business .box-slider {
  position: relative;
  padding: 30px 30px;
  min-height: 300px;
  box-shadow: 0px 0px 6px #ccc;
  border-top: 4px solid transparent;
}
.sec-business .box-slider:hover {
  border-top: 4px solid var(--theme-border-emerald-green);
}
.sec-business .box-slider h2 {
  font-size: 32px;
  font-family: "FSAlbert";
}
.sec-business .box-slider .btn-round {
  position: absolute;
  bottom: 20px;
}
.sec-business .box-slider.s-bg1,
.sec-suggservs .box-services.s-bg1 {
  background: url("../../assets/img/service-icons/business/b-broadband.png") top 50% right, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 130px;
}
.sec-business .box-slider.s-bg2,
.sec-suggservs .box-services.s-bg2 {
  background: url("../../assets/img/service-icons/business/b-cloud-pbx.png") top 50% right, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 150px;
}
.sec-business .box-slider.s-bg3,
.sec-suggservs .box-services.s-bg3 {
  background: url("../../assets/img/service-icons/business/b-cloud.png") top 50% right, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 150px;
}
.sec-business .box-slider.s-bg4,
.sec-suggservs .box-services.s-bg4 {
  background: url("../../assets/img/service-icons/business/b-border-protection.png") top 50% right -10%, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 150px;
}
.sec-business .box-slider.s-bg5, 
.sec-suggservs .box-services.s-bg5 {
  background: url("../../assets/img/service-icons/business/b-ai-cyber-security.png") top 60% right, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 165px;
}
.sec-business .box-slider.s-bg6,
.sec-suggservs .box-services.s-bg6 {
  background: url("../../assets/img/service-icons/business/b-dia.png") top 60% right, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 112px;
}
.sec-business .box-slider.s-bg7,
.sec-suggservs .box-services.s-bg7 {
  background: url("../../assets/img/service-icons/business/b-ms-teams.png") top 50% right -40px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 180px;
}
.sec-business .box-slider.s-bg8,
.sec-suggservs .box-services.s-bg8 {
  background: url("../../assets/img/service-icons/business/b-it-solutions.png") top 50% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg9,
.sec-suggservs .box-services.s-bg9 {
  background: url("../../assets/img/service-icons/business/b-remote-access.png") top 50% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 160px;
}
.sec-business .box-slider.s-bg10,
.sec-suggservs .box-services.s-bg10 {
  background: url("../../assets/img/service-icons/business/b-soc.png") top 50% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 120px;
}
.sec-business .box-slider.s-bg11,
.sec-suggservs .box-services.s-bg11 {
  background: url("../../assets/img/service-icons/business/b-sd-wan.png") top 60% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 155px;
}
.sec-business .box-slider.s-bg12,
.sec-suggservs .box-services.s-bg12 {
  background: url("../../assets/img/service-icons/business/b-contact-center.png") top 55% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 150px;
}
.sec-business .box-slider.s-bg13,
.sec-suggservs .box-services.s-bg13 {
  background: url("../../assets/img/service-icons/business/b-ms-365.png") top 50% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 170px;
}
.sec-business .box-slider.s-bg14,
.sec-suggservs .box-services.s-bg14 {
  background: url("../../assets/img/service-icons/business/b-threat-management.png") top 60% right -5px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg15,
.sec-suggservs .box-services.s-bg15 {
  background: url("../../assets/img/service-icons/business/b-vapt.png") top 60% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 150px;
}
.sec-business .box-slider.s-bg16,
.sec-suggservs .box-services.s-bg16 {
  background: url("../../assets/img/service-icons/business/b-dc-infrastructure.png") top 60% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg17,
.sec-suggservs .box-services.s-bg17 {
  background: url("../../assets/img/service-icons/business/b-collaboration.png") top 58% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 145px;
}
.sec-business .box-slider.s-bg18,
.sec-suggservs .box-services.s-bg18 {
  background: url("../../assets/img/service-icons/business/b-ai.png") top 65% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 145px;
}
.sec-business .box-slider.s-bg19,
.sec-suggservs .box-services.s-bg19 {
  background: url("../../assets/img/service-icons/business/b-filtering.png") top 50% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 130px;
}
.sec-business .box-slider.s-bg20,
.sec-suggservs .box-services.s-bg20 {
  background: url("../../assets/img/service-icons/business/b-compliance.png") top 65% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 120px;
}
.sec-business .box-slider.s-bg21,
.sec-suggservs .box-services.s-bg21 {
  background: url("../../assets/img/service-icons/business/b-ibn.png") bottom 5% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 130px;
}
.sec-business .box-slider.s-bg22,
.sec-suggservs .box-services.s-bg22 {
  background: url("../../assets/img/service-icons/business/b-private-voice.png") top 60% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg23,
.sec-suggservs .box-services.s-bg23 {
  background: url("../../assets/img/service-icons/business/b-software-dc.png") top 70% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg24,
.sec-suggservs .box-services.s-bg24 {
  background: url("../../assets/img/service-icons/business/b-intrusion-prevention.png") top 50% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg25,
.sec-suggservs .box-services.s-bg25
{
  background: url("../../assets/img/service-icons/business/b-vpn.png") top 52% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 130px;
}
.sec-business .box-slider.s-bg26,
.sec-suggservs .box-services.s-bg26 {
  background: url("../../assets/img/service-icons/business/b-voice-trunking.png") top 60% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg27,
.sec-suggservs .box-services.s-bg27 {
  background: url("../../assets/img/service-icons/business/b-iot.png") top 70% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}
.sec-business .box-slider.s-bg28,
.sec-suggservs .box-services.s-bg28 {
  background: url("../../assets/img/service-icons/business/b-managed-network.png") top 70% right 0px, var(--theme-bg-theme-white);
  background-repeat: no-repeat;
  background-size: 140px;
}

.sec-digital {
  background: var(--theme-bg-theme-emerald-green);
}
.sec-digital h2 {
  font-size: 48px;
  font-family: "Hero New";
}

.sec-solution h2 {
  font-weight: 500;
}
.sec-solution .img-box {
  overflow: hidden;
  position: relative;
  box-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.14);
  border-radius: 7px;
}
.sec-solution .img-box img {
  height: 100%;
}
.sec-solution .img-box .figure-caption {
  background: hwb(0deg 100% 0%/90%);
  padding: 20px 20px;
  position: absolute;
  bottom: 20px;
  min-height: 165px;
  width: 100%;
}
.sec-solution .img-box .figure-caption h2 {
  color: #000;
  font-size: 32px;
  font-family: "FSAlbert";
  font-weight: 600;
}
.sec-solution .img-box .figure-caption p {
  color: #000;
}
.sec-solution .img-box .figure-caption .icon {
  background: var(--theme-bg-theme-electric-green);
  color: #fff;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50px;
  display: block;
  text-align: center;
  position: absolute;
  bottom: 20px;
  right: 12px;
}
.sec-solution .img-box:hover {
  transition: 0.7s;
}
.sec-solution .img-box:hover img {
  transition: 0.7s;
  transform: scale(1.04) !important;
}
.sec-solution .img-box:hover .icon {
  background: var(--theme-bg-theme-emerald-green);
}

.sec-choose {
  padding-bottom: 80px;
}
.sec-choose strong {
  font-weight: 400 !important;
}
.sec-choose .box-choose {
  border-radius: 8px;
  padding: 10px 15px;
  min-height: 135px;
  width: 100%;
}
.sec-choose .box-choose h2 {
  color: var(--theme-text-electric-green);
}
.sec-choose .box-choose .text-md {
  font-size: 25px;
}
.sec-choose .box-choose p {
  font-size: 15px;
}
.sec-choose .logos a div img {
  opacity: 1;
  mix-blend-mode: multiply;
  width: 100%;
}
.sec-choose .logos .partner-logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}
.sec-choose .logos .partner-logo:hover {
  mix-blend-mode: multiply;
}
.sec-companies-logo {
  padding-bottom: 80px;
}
.sec-companies-logo .wd-link {
  width: 150px;
}
.sec-companies-logo .link-dark {
  font-family: "FSAlbert";
}
.sec-companies-logo .link-dark:hover {
  text-decoration: underline;
}
.sec-companies-logo .link-dark:hover i {
  transition: 0.8;
  padding-left: 3px;
}

.sec-news-preview {
  background: var(--theme-bg-theme-forest-green);
}
.sec-news-preview h2 {
  color: var(--theme-text-electric-green);
}
.sec-news-preview h3 {
  color: #fff;
  font-family: "FSAlbert";
  font-size: 28px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.sec-news-preview a {
  color: var(--theme-text-electric-green);
  text-decoration: none;
}
.sec-news-preview a:hover {
  text-decoration: underline;
}
.sec-news-preview a:hover i {
  transition: 0.7s;
  padding-left: 4px;
}
.sec-news-preview .swiper-button-next, .sec-news-preview .swiper-button-prev {
  color: var(--theme-text-electric-green);
}
.sec-news-preview img {
  max-height: 250px;
  max-width: 100%;
}

.sec-social {
  background: var(--theme-bg-theme-gray);
}
.sec-social a {
  color: #919491;
}
.sec-social p {
  font-size: 14px;
  font-family: "FSAlbert";
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  color: black;
}
.sec-social .card .c-img img {
  border-radius: 7px 7px 0px 0px;
  height: 220px;
  object-fit: cover;
}
.sec-social .logo-link a {
  font-size: 20px;
}
.sec-social .logo-link a:hover svg g {
  opacity: 0.7;
  transition: 0.5;
  fill: var(--theme-bg-theme-electric-green);
}
.sec-social .logo-link a:hover svg g rect {
  opacity: 0.7;
  transition: 0.5;
  fill: var(--theme-bg-theme-electric-green);
}
.sec-social .logo-link a:hover .insta svg path {
  opacity: 0.7;
  transition: 0.5;
  fill: var(--theme-bg-theme-electric-green);
}
.sec-social .card .play-btn {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: 20px;
}
.sec-social p.follow a {
  vertical-align: middle;
  line-height: 2rem;
}
.sec-social p.follow a i {
  font-size: 24px;
}

.sec-help p {
  font-size: 18px;
  line-height: 22px;
}

.sec-subscribe p {
  font-size: 18px;
}
.sec-subscribe .input-group {
  border-radius: 4px;
}
.sec-subscribe .input-group .form-control {
  border: 0px;
}
.sec-subscribe .input-group .btn-subscribe {
  background: var(--theme-bg-theme-forest-green);
  font-family: "FSAlbert";
  color: #fff;
  border-radius: 50px !important;
  font-size: 14px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
}
.sec-subscribe .input-group .btn-subscribe:hover {
  opacity: 0.9;
}

.footer {
  padding: 50px 0px 30px 0px;
}
.footer h5 {
  font-size: 14px;
  font-family: "FSAlbert";
  font-weight: 600;
}
.footer .line {
  display: block;
  width: 100%;
  height: 0.5px;
  background: #fff;
}
.footer .f-links li {
  font-size: 13px;
  color: #fff;
  font-family: "FSAlbert";
  display: block;
  margin-bottom: 7px;
}
.footer .f-links a {
  font-size: 12px;
  color: #fff;
  font-family: "FSAlbert";
  display: block;
  margin-bottom: 7px;
}
.footer .f-links a:hover {
  color: var(--theme-text-electric-green);
}

.breadcrumb .breadcrumb-item {
  font-size: 14px;
  font-family: "FSAlbert";
  text-transform: capitalize;
}
.breadcrumb .breadcrumb-item a {
  color: #212721;
}
.breadcrumb .breadcrumb-item.active a {
  font-weight: 600;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: " >";
  font-family: FontAwesome;
}

.team p {
  text-transform: uppercase;
  font-size: 13px;
  font-family: "FSAlbert";
}

.content {
  position: relative;
  margin: auto;
  overflow: hidden;
}
.content .content-overlay {
  background: #0c5948b5;
  border-radius: 250px;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.content:hover .content-overlay {
  opacity: 1;
}
.content .content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}
.content .fadeIn-bottom {
  top: 80%;
}

.sec-financial {
  background-size: 57% auto;
  background-position: right;
  height: 445px;
  display: flex;
  align-items: center;
}
.sec-financial h2 {
  font-family: "FSAlbert";
}

.banner-text-overlap {
  background-size: 57% auto;
  background-position: right;
  height: 445px;
  display: flex;
  align-items: center;
}
.banner-text-overlap .text-block {
  max-width: fit-content;
}
.banner-text-overlap h1 {
  /* padding-right: 100px!important; */
}
.banner-text-overlap h2 {
  font-family: "FSAlbert";
}

.sec-services a:hover {
  text-decoration: underline;
}
.sec-services .wd-link {
  display: block;
}
.sec-services .wd-link a:hover {
  text-decoration: underline;
}
.sec-services .wd-link a:hover i {
  transition: 0.5s;
  padding-left: 3px;
}
.sec-services .box-image-text-1 {
  background: #fff;
  padding: 30px 40px;
  margin-left: -160px;
}
.sec-services .box-image-text-2 {
  background: #fff;
  padding: 30px 40px;
  margin-right: -170px;
  position: relative;
}
.sec-services .box-image-text-2 a:hover {
  padding-right: 0px;
  text-decoration: underline;
}
.sec-services .box-image-text-2 a:hover i {
  transition: 0.5s;
  padding-left: 5px;
}

.sec-img-text-link,
.sec-img-text-overlap {
  padding: 0!important;
}
.sec-img-text-link a:hover,
.sec-img-text-overlap a:hover{
  text-decoration: underline;
}
.sec-img-text-link .wd-link,
.sec-img-text-overlap .wd-link {
  display: block;
}
.sec-img-text-link .wd-link a:hover,
.sec-img-text-overlap .wd-link a:hover {
  text-decoration: underline;
}
.sec-img-text-link .wd-link a:hover i,
.sec-img-text-overlap .wd-link a:hover i {
  transition: 0.5s;
  padding-left: 3px;
}
.sec-img-text-overlap .box-image-text-1 {
  background: #fff;
  padding: 0px 40px;
  /* margin-left: -160px; */
}
.sec-img-text-overlap .box-image-text-2 {
  background: #fff;
  padding: 0px 40px;
  /* margin-right: -170px; */
  position: relative;
}
.sec-img-text-overlap .box-image-text-2 a:hover {
  padding-right: 0px;
  text-decoration: underline;
}
.sec-img-text-overlap .box-image-text-2 a:hover i {
  transition: 0.5s;
  padding-left: 5px;
}


.sec-suggservs .box-services,
.box-services {
  padding: 30px 30px;
  position: relative;
  box-shadow: 0px 0px 6px #ccc;
  min-height: 305px;
  border-top: 4px solid transparent;
}
.sec-suggservs .box-services:hover,
.box-services:hover {
  border-top: 4px solid var(--theme-bg-theme-emerald-green);
}
.sec-suggservs .box-services .fs-14,
.box-services .fs-14 {
  font-size: 14px;
  font-family: "FSAlbert";
}
.sec-suggservs .box-services .btn-round,
.box-services .btn-round {
  position: absolute;
  bottom: 25px;
  height: 35px;
  width: 140px;
  transition: 0.5s;
}

.sec-suggservs .box-services.bg-s1 {
  background: url(../../assets/img/service-icons/business/b-ai-cyber-security.png) top 58% right, #fff;
  background-repeat: no-repeat;
  background-size: 200px;
}
.sec-suggservs .box-services.bg-s2 {
  background: url(../../assets/img/service-icons/business/b-cloud.png) top 50% right, #fff;
  background-repeat: no-repeat;
  background-size: 200px;
}
.sec-suggservs .box-services.bg-s3 {
  background: url(../../assets/img/service-icons/business/b-software-dc.png) top 50% right, #fff;
  background-repeat: no-repeat;
  background-size: 150px;
}

.global-services .bg-global {
  background: url(../../assets/img/global/services/banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding-left: 100px;
}
.global-services .gs-content {
  font-family: "Hero New";
  font-size: 18px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-text .section-text-content,
.section-text div {
  font-family: "Hero New";
  font-size: 18px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-text p  {
  font-family: "Hero New";
  font-size: 18px;
}
.section-text .description  {
  font-family: "FSAlbert";
}

.pre-title {
  font-size: 14px;
  font-family: 'FSAlbert';
  white-space: pre-wrap;
}
.pre-title-line {
  width: 63px;
  height: 2px;
  display: inline-block;
  background: #0A363A;
  font-size: 14px;
}

.sec-quote-full {
  background-size: cover!important;
  background-position: center!important;
  display: flex;
  align-items: center;
}
.sec-quote-full h2 {
  color: white;
  font-size: 24px;
}
.sec-quote-full small {
  font-family: "FSAlbert";
  font-size: 14px;
  line-height: 1rem;
}

.sec-image-text img,
.sec-text-image img {
  border-radius: 7px; 
}

.news p,
.news {
  font-size: 16px!important;
  font-family: "FSAlbert"!important;
}

.sec-news .list-news li a {
  font-size: 14px;
  font-family: "FSAlbert";
  color: #707070;
}
.sec-news .list-news li a.active {
  font-weight: 700;
  color: var(--theme-text-electric-green);
}
.sec-news .form-search .form-control {
  border: 1px solid #707070;
  border-radius: 50px;
}
.sec-news .form-search button {
  border: 1px solid #707070;
  border-radius: 50px;
}
.sec-news .card-news {
  border-radius: 0px;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.sec-news .card-news p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.sec-news .card-news:hover h5 {
  color: var(--theme-text-emerald-green);
}
.sec-news .card-news:hover p {
  color: var(--theme-text-emerald-green);
}
.sec-news .card-news img {
  max-height: 200px;
  object-fit: cover;
}
.sec-news .card-title {
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.sec-news-article .img-header {
  max-height: 600px;
}
.sec-news-article .text-emerald-green,
.sec-news-article .list-inline-item {
  font-family: "FSAlbert";
  font-size: 14px;
}
.sec-news-article .fab,
.sec-news-article .far {
  color:#707070;  
}
.sec-news-article .fab:hover,
.sec-news-article .far:hover {
  color: var(--theme-text-emerald-green);
}
.sec-news-article .category {
  text-transform: uppercase;
}
.sec-news-article h1 {
  text-transform: capitalize;
}

.sec-sd-banner {
  background: url(../../assets/img/business/net-infrastructure/sd-wan-banner.png);
  background-repeat: no-repeat;
  background-size: cover!important;
  padding: 80px 0px 100px 0px;
}
.sec-sd-banner .box-banner {
  padding: 30px 40px;
}
.sec-sd-banner .btn-round {
  width: 23px;
}

.sec-faq .down-btn {
  position: absolute;
  right: 15px;
}
.sec-faq .btn {
  width: 150px;
  height: 35px;
}
.sec-faq .nav-item {
  padding-left: 10px;
  padding-right: 10px;
}
.sec-faq .nav-tabs .nav-link {
  border: 0px;
  border-bottom: 2px solid transparent;
  color: #212721;
  margin-bottom: 0px;
  font-family: "FSAlbert";
}
.sec-faq .nav-tabs .nav-link.active {
  color: var(--theme-text-emerald-green);
  font-weight: 600;
  border-bottom: 3px solid var(--theme-border-emerald-green);
}
.sec-faq .nav-tabs .nav-link:hover {
  color: var(--theme-text-emerald-green);
}
.sec-faq .nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -3.25px;
  width: 0px;
  height: 3px;
  background: var(--theme-border-emerald-green);
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.sec-faq .nav-tabs .nav-link:hover:before {
  width: 100%;
}
.sec-faq .accordion-item {
  color: var(--bs-accordion-color);
  border: 0px solid;
  border-bottom: 1px solid #ccc;
  border-radius: 0px;
}
.sec-faq .accordion-item button {
  font-family: "FSAlbert";
  font-size: 16px;
  font-weight: 500;
}
.sec-faq .accordion-item button:focus {
  box-shadow: none;
}
.sec-faq .accordion-item button.accordion-button:not(.collapsed) {
  box-shadow: none;
}
.sec-faq .accordion-item button.accordion-button:not(.collapsed) {
  color: var(--theme-text-emerald-green);
  background-color: #fff;
  font-weight: 700;
}
.sec-faq .accordion-item button.accordion-button:not(.collapsed)::after {
  background-image: url(../../assets/img/icons/arrow-down.png);
  transform: var(--bs-accordion-btn-icon-transform);
}
.sec-faq .accordion-item button.accordion-button::after {
  background-image: url(../../assets/img/icons/arrow-down.png);
}

.sec-feature .box-feature {
  padding: 20px;
  padding-top: 10px;
  border-radius: 4px;
  min-height: 100%;
  min-width: 200px;
}
.sec-feature .box-feature .img-height {
  height: auto;
  max-height: 120px;
}

.sec-review a:hover {
  text-decoration: underline;
}
.sec-review a:hover i {
  padding-left: 4px;
  transition: 0.7s;
}

.chat-wrapper #chat-circle {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background: #fff;
  width: 60px;
  height: 60px;
  line-height: 57px;
  text-align: center;
  border-radius: 50%;
  z-index: 10;
  color: white;
  cursor: pointer;
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.chat-wrapper .chat-box {
  display: none;
  background: #efefef;
  position: fixed;
  right: 0px;
  bottom: 50px;
  width: 400px;
  max-width: 85vw;
  max-height: 100vh;
  border-radius: 5px;
  z-index: 10;
}
.chat-wrapper .chat-box-header {
  background: #22D66B;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: white;
  font-size: 20px;
}
.chat-wrapper .chat-box-toggle {
  cursor: pointer;
}
.chat-wrapper .chat-box-body {
  position: relative;
  height: 330px;
  background: #fff;
  border: 1px solid #ccc;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 20px;
}
.chat-wrapper .chat-box-body .chat-time {
  margin-bottom: 0px;
}
.chat-wrapper .chat-box-body .bubble {
  padding: 12px 20px;
}
.chat-wrapper .chat-box-body .bubble p {
  color: #212721;
  font-family: "FSAlbert";
}
.chat-wrapper .chat-box-body .bubble.bubble-right {
  max-width: 90%;
  background: #22D66B4D;
  border-radius: 15px 15px 0px 15px;
}
.chat-wrapper .chat-box-body .bubble.bubble-left {
  max-width: 90%;
  background: #E7E5DF80;
  border-radius: 15px 15px 15px 0px;
}
.chat-wrapper .chat-input {
  border: 1px solid #ccc;
  border-top: 0px;
}
.chat-wrapper .form-control {
  font-family: "FSAlbert";
}
.chat-wrapper h3 {
  font-size: 24px;
  font-family: "FSAlbert";
}
.chat-wrapper .btn-send {
  background: var(--theme-bg-theme-electric-green);
  border-radius: 0px !important;
  color: #fff;
  font-size: 16px;
  font-family: "FSAlbert";
  padding: 6px 25px;
}

.popover-body {
  padding: 9px 20px;
}
.popover-body a {
  color: #919491;
}
.popover-body a:hover {
  color: #22d66b;
}

.bg-referral {
  background: #fff url(../../assets/img/bg-rp.png) no-repeat;
  background-size: 73% auto;
  background-position: right;
  height: 445px;
  display: flex;
  align-items: center;
}
.bg-referral .box-referral {
  padding: 40px 30px 30px 30px;
}
.bg-referral .box-referral h2 {
  font-family: "Hero New";
  font-size: 48px;
  color: #212721;
  font-weight: 700;
}
.bg-referral .box-referral p {
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
}

.sec-rpcontent {
  padding: 80px 0px 0px 0px;
}
.sec-rpcontent p {
  color: #212721;
}
.sec-rpcontent ul li {
  color: #212721;
  font-size: 16px;
  font-family: "FSAlbert";
}

.sec-quote-slider {
  background: var(--theme-bg-theme-forest-green);
  padding-top: 80px!important;
  padding-bottom: 30px!important;
}
.sec-quote-slider p {
  font-size: 28px;
  font-family: "FSAlbert";
  line-height: 1.2em;
  margin-left: 20px;
  margin-right: 20px;
}
.sec-quote-slider span {
  font-family: "FSAlbert";
  font-size: 14px;
  line-height: 4px;
  font-weight: 400;
}

.sec-contactform {
  padding-bottom: 130px;
}
.sec-contactform .row-contact {
  padding: 40px 0px;
}

.form-wrapper {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 8px;
  padding: 40px 40px;
}
.form-wrapper form .form-label {
  color: #0A363A;
  font-size: 12px;
  font-family: "FSAlbert";
  line-height: 14px;
  margin-bottom: 0px;
}
.form-wrapper form .form-check-label {
  color: #0A363A;
  font-size: 12px;
  font-family: "FSAlbert";
  line-height: 14px;
  margin-bottom: 0px;
}
.form-wrapper form .form-check-input {
  color: #0A363A;
}
.form-wrapper form .form-control {
  border-radius: 0px;
  border: 0px;
  font-size: 16px;
  font-family: "FSAlbert";
  color: #707070;
  padding-left: 0px;
  border-bottom: 1px solid #707070;
}
.form-wrapper form .form-control::placeholder {
  color: #707070;
}
.form-wrapper form .form-control:hover {
  border-color: #159579;
}
.form-wrapper form .form-control:focus {
  border-color: #159579;
}

.sec-search {
  padding-bottom: 70px;
}
.sec-search .row-search {
  padding: 40px 0px;
}
.sec-search .row-search form .search-ico {
  position: absolute;
  top: 27%;
  left: 20px;
}
.sec-search .row-search form .form-control {
  font-size: 16px;
  font-family: "FSAlbert";
  color: #707070;
  height: 50px;
  border-radius: 50px !important;
  box-shadow: inset 0px 3px 6px #00000029;
  padding-left: 45px;
}
.sec-search .search-details p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}