/* Custom Font style */
@font-face {
  font-family: 'Futura PT light';
  src: url("../font/FuturaPTLight.otf");
}

@font-face {
  font-family: 'Futura PT medium';
  src: url("../font/FuturaPTMedium.otf");
}

@font-face {
  font-family: 'Futura PT bold';
  src: url("../font/FuturaPTBold.otf");
}

@font-face {
  font-family: 'Futura PT book';
  src: url("../font/FuturaPTBook.otf");
}

@font-face {
  font-family: 'Futura PT Heavy';
  src: url("../font/FuturaPTHeavy.otf");
}

/* Global style begins here */
:root {
  --primary: #E00B9C;
  --seconary: #A3EA0B;
  --background: #010A0F;
  --background-seconary: #021B27;
}

body {
  font-family: 'Futura PT medium';
  font-size: 16px;
  line-height: 1.5;
}

/* Reset style */
* {
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
}

.d-flex{
  gap:20px;
}

/* Global style ends here */
/* Banner style begins here */
#Banner .logo {
  position: absolute;
  top: 10%;
  left: 10%;
  opacity: 0;
}

#Banner {
  width: 0;
  height: 100vh;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e64741+0,e6255d+100,7db9e8+100 */
  background: var(--primary);
  /* Old browsers */
  background: -moz-linear-gradient(top, var(--primary) 0%, #e23767 100%, var(--seconary) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, var(--primary) 0%, #e23767 100%, var(--seconary) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, var(--primary) 0%, #e23767 100%, var(--seconary) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E00B9C', endColorstr='#A3EA0B', GradientType=0);
  /* IE6-9 */
  overflow: hidden;
  position: relative;
}

body.active #Banner .logo {
  opacity: 1;
  top: 12%;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

body.active #Banner {
  width: 100%;
  transition: ease-in-out all 0.5s;
}

body.active #Banner .blacksection::before {
  height: 1800px;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -ms-transition-delay: 1s;
}

body.active #Banner h1 {
  opacity: 1;
  right: 15%;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
  -ms-transition-delay: 1.5s;
}

#Banner h1 {
  color: #fff;
  font-size: 80px;
  font-family: 'Futura PT book';
  position: absolute;
  margin: 0;
  padding: 0;
  text-align: right;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  opacity: 0;
}

#Banner .blacksection::before {
  width: 2000px;
  height: 0;
  background-color: var(--background);
  position: absolute;
  right: -1000px;
  transform: rotate(124deg);
  -ms-transform: rotate(124deg);
  content: "";
  top: 0;
}

.mscroll {
  opacity: 0;
  position: absolute;
  text-align: center;
  display: inline-block;
}

body.active .mscroll {
  opacity: 1;
  bottom: 14%;
  left: 50%;
  transition: all 0.5s;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.75s;
  -ms-transition-delay: 1.75s;
}

.mobile-header,
.mobile-logo {
  display: none;
}

.mobile-header img {
  width: 100%;
  height: auto;
}

#sidebar-wrapper {
  top: 0;
  position: fixed;
  z-index: 2;
  right: 0;
  width: 250px;
  height: 100%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  transform: translateX(250px);
  background: var(--primary);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
  position: absolute;
  margin: 0;
  padding: 0 20px 0 0;
  list-style: none;
  text-align: right;
  width: 100%;
  top: 5%;
}

#sidebar-wrapper .sidebar-nav li.sidebar-nav-item a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  line-height: 200%;
}

#sidebar-wrapper .sidebar-nav li a:hover {
  text-decoration: none;
  color: #A3EA0B;
  transition: all 0.3s;
}

#sidebar-wrapper .sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
  text-decoration: none;
  color: #A3EA0B;
  transition: all 0.3s;
}

#sidebar-wrapper .sidebar-nav>.sidebar-brand {
  font-size: 20px;
  height: 80px;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

#sidebar-wrapper .sidebar-nav>.sidebar-brand a {
  color: #fff;
}

#sidebar-wrapper .sidebar-nav>.sidebar-brand a:hover {
  color: #fff;
  background: none;
}

#sidebar-wrapper.active {
  right: 250px;
  width: 250px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.menu-toggle {
  position: fixed;
  right: 30px;
  top: 30px;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
  background: #000;
  z-index: 999;
  width: 56px;
  height: 50px;
  line-height: 51px;
}

.menu-toggle i {
  font-size: 30px;
  line-height: 40px;
}

.menu-toggle:focus,
.menu-toggle:hover {
  color: #fff;
}

.menu-toggle:hover,
.menu-toggle.active {
  background: #A3EA0B;
}

/* Banner style ends here */
/* Our Digital services style begins here */
#Services {
  padding: 60px 0 90px 0;
  text-align: center;
  background: var(--background-seconary);
}

#Services h2 {
  color: #fff;
  font: 68px/125% 'Futura PT book';
  margin-bottom: 90px;
}

#Services .each-services img {
  width: 100px;
  height: auto;
  padding-bottom: 20px;
}

#Services .each-services lottie {
  width: 300px;
  height: 300px;
  padding-bottom: 30px;
}

#Services .each-services h3 {
  color: #fff;
  font-size: 30px;
  line-height: 110%;
  font-family: 'Futura PT book';
  margin-bottom: 20px;
}

#Services .each-services p {
  color: #fff;
  font-size: 18px;
  line-height: 120%;
  font-family: 'Futura PT book';
}

/* Our Digital services style ends here */

/* Our sponsors begin */
#OurPartner {
  background-color: var(--background-seconary);
  padding: 60px 0;
}

#OurPartner h2 {
  color: var(--primary);
  text-align: center;
  font: 68px/125% 'Futura PT book';
  margin-bottom: 40px;
}

#OurPartner .grey-box {
  background-color: var(--primary);
  padding: 20px;
  height: 300px;
  position: relative;
}

#OurPartner .grey-box img {
  display: inline-block;
}

#OurPartner .each-work {
  display: inline-block;
  width: 31%;
  background-color: var(--primary);
  margin: 0 8px 10px; /* Reduced spacing between items */
  height: 142px;
  position: relative;
  text-align: center;
}

#OutPartner .space {
  margin: 10px;
  padding: 5px;
}

#OurPartner .each-work img {
  position: absolute;
  max-width: 90%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

#OurPartner .grey-box .sponser {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
  padding-left: 30px;
}

#OurPartner .sponser h4 {
  font: 700 20px/125% 'Futura PT book';
  color: var(--seconary);
  border-top: 2px solid #b6b3b3;
  width: 80%;
  padding: 10px 0 0 0;
}

/* Our sponsors style ends here */
/* Our work begin */
#OurWork {
  background-color: var(--seconary);
  padding: 60px 0;
}

#OurWork h2 {
  color: var(--primary);
  text-align: center;
  font: 68px/125% 'Futura PT book';
  margin-bottom: 40px;
}

#OurWork .grey-box {
  background-color: var(--primary);
  padding: 20px;
  height: 300px;
  position: relative;
}

#OurWork .grey-box img {
  display: inline-block;
}

#OurWork .grey-box .aws {
  position: absolute;
  height: 13%;
  margin-left: 30%;
  top: 75%;
}

#OurWork .grey-box .openstack-small {
  position: absolute;
  height: 13%;
  top: 5%;
  margin-left: 40%;
}

#OurWork .grey-box .stackit {
  position: absolute;
  height: 11%;
  top: 10%;
  margin-left: 15%;
}

#OurWork .grey-box .azure {
  position: absolute;
  height: 15%;
  top: 30%;
  margin-left: 15%;
}

#OurWork .grey-box .openstack {
  position: absolute;
  height: 11%;
  bottom: 35%;
  margin-left: 12%;
}

#OurWork .each-work {
  display: inline-block;
  width: 31%;
  background-color: var(--primary);
  margin: 0 8px 10px;
  height: 142px;
  position: relative;
  text-align: center;
}

#OurWork .each-work img {
  position: absolute;
  max-width: 90%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

#OurWork .grey-box .sponser {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
  padding-left: 30px;
}

#OurWork .sponser h4 {
  font: 700 20px/125% 'Futura PT book';
  color: var(--seconary);
  border-top: 2px solid #b6b3b3;
  width: 80%;
  padding: 10px 0 0 0;
}

/* Our work end */
/* Our blog begin */
#OurBlog {
  padding: 60px 0;
  background-color: var(--background);
}

#OurBlog h2 {
  color: #fff;
  font: 68px/125% 'Futura PT book';
  margin-bottom: 20px;
  text-align: center;
}

#OurBlog p {
  color: #fff;
  font: 18px/125% 'Futura PT book';
  margin-bottom: 20px;
  text-align: center;
}

#OurBlog .blog-wrap {
  position: relative;
  height: 400px;
  margin: 60px 0;
}

#OurBlog .each-block {
  position: absolute;
  width: 400px;
}

#OurBlog .each-block.one {
  left: 0;
  top: 0;
  position: absolute;
}

#OurBlog .each-block.two {
  right: 0;
  top: 0;
  position: absolute;
}

@media only screen and (max-width: 990px){
  #OurBlog .each-block.one {
    left: 0;
    top: 0;
    position: relative;
    margin-left: 20%;
  }
  
  #OurBlog .each-block.two {
    right: 0;
    top: 0;
    position: relative;
    margin-left: 20%;
  }
}

#OurBlog .each-block .icon {
  float: left;
  background-color: var(--primary);
  padding: 8px 10px 8px;
  margin-right: 16px;
}

#OurBlog .blog-wrap .blog-intro {
  display: inline-block;
  width: 80%;
  position: relative;
}

#OurBlog .blog-wrap .blog-intro h3 {
  font: 700 24px/100% 'Futura PT book';
  margin: 0 0 6px;
  color: #fff;
}

#OurBlog .blog-wrap .blog-intro h4 {
  font: 700 20px/100% 'Futura PT book';
  margin: 0 0 6px;
  color: #fff;
}

#OurBlog .blog-intro p {
  text-align: left;
  padding-left: 45px;
  position: relative;
}

#OurBlog .blog-intro p:before {
  content: "";
  width: 36px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 6px;
}

#OurBlog .blog-wrap:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #e4e4e4;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#OurBlog .learnmore {
  text-align: center;
}

@media only screen and (max-width: 990px){
  #OurBlog .learnmore {
    text-align: center;
    display: block;
    position: relative;
    margin-top: 90%;
  }
}

#OurBlog .learnmore a {
  background-color: var(--seconary);
  color: var(--primary);
  padding: 20px 30px;
  font: 700 24px/100% 'Futura PT book';
  display: inline-block;
  border-radius: 5px;
  width: 240px;
}

#OurBlog .learnmore a span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#OurBlog .learnmore a span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#OurBlog .learnmore a:hover span {
  padding-right: 25px;
}

#OurBlog .learnmore a:hover span:after {
  opacity: 1;
  right: 0;
}

/* Our blog end */
/* Testimonials style begins here */
#Testimonials {
  padding: 60px 0 90px 0;
}

#Testimonials h2 {
  color: #000;
  font: 68px/125% 'Futura PT book';
  margin-bottom: 20px;
  text-align: center;
}

#Testimonials p {
  color: #000;
  font: 18px/125% 'Futura PT book';
  margin-bottom: 20px;
  text-align: center;
}

#Testimonials .testi-wrapper {
  margin-top: 90px;
}

#Testimonials .testi-wrapper .each-testi {
  display: inline-block;
  vertical-align: middle;
  width: 31.8%;
}

#Testimonials .testi-wrapper .latest-testimonials {
  margin-right: 10px;
}

#Testimonials .testi-wrapper .old-testimonials {
  background: red;
  padding: 50px;
  margin: 0 10px;
  height: 300px;
}

#Testimonials .testi-wrapper .old-testimonials.no-margin {
  margin-right: 0;
}

#Testimonials .testi-wrapper .old-testimonials {
  background: url("../images/testimonials-background.jpg") no-repeat bottom center / cover;
  padding: 30px 50px;
  margin: 0 10px;
  height: 300px;
  position: relative;
  text-align: center;
}

#Testimonials .division {
  margin-bottom: 30px;
}

#Testimonials span {
  display: inline-block;
  font: 70px/125% 'Futura PT book';
  color: #f86b74;
}

#Testimonials .title {
  display: inline-block;
  border-left: 4px solid #89cbbf;
  padding-left: 20px;
  margin-left: 15px;
}

#Testimonials .title h4 {
  font: 30px/125% 'Futura PT book';
  color: #000;
  margin-bottom: 5px;
}

#Testimonials .title h6 {
  font: 18px/125% 'Futura PT book';
  color: #000;
  margin-bottom: 0;
}

#Testimonials .latest-testimonials p {
  text-align: left;
  color: #000;
}

#Testimonials .each-testi p {
  color: #fff;
}

#Testimonials .each-testi .profile {
  position: absolute;
  bottom: 30px;
  width: 100%;
  left: 0;
}

#Testimonials .each-testi .profile img {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: auto;
}

#Testimonials .each-testi .profile .designation {
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px
}

#Testimonials .each-testi .profile .designation h6 {
  color: #fff;
  font-size: 16px;
}

#Testimonials .each-testi .profile .designation p {
  color: #fff;
  margin: 0;
}

#Testimonials .testi-wrapper .latest-testimonials p {
  color: #000;
}

/* Testimonials style ends here */
/* Footer */
#Contact {
  text-align: center;
  padding: 70px 0 50px 0;
  background-color: var(--seconary);
}

#Contact p {
  color: var(--primary);
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

#Contact a.email-btn {
  color: #fff;
  background-color: var(--primary);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 6px;
  font-size: 28px;
  width: 240px;
}

#Contact a.email-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

#Contact a.email-btn span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

#Contact a.email-btn:hover span {
  padding-right: 25px;
}

#Contact a.email-btn:hover span:after {
  opacity: 1;
  right: 0;
}

#Contact a i {
  margin-right: 14px;
}

.social-icons {
  margin-top: 50px;
}

.social-icons li {
  display: inline-block;
  margin: 0 16px;
}

.social-icons li a {
  display: block;
}

.social-icons li i {
  color: var(--primary);
  font-size: 34px;
  transition: all 0.3s;
}

.social-icons li i:hover {
  transform: scale(1.3);
}

.copyright {
  background-color: #03060c;
  padding: 26px 0;
  text-align: center;
  font-size: 20px;
  color: #fff;
}

.copyright p {
  margin-bottom: 0;
}

/* Footer eleven css */
@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer-eleven {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--white);
  position: relative;
  text-align: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-eleven {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer-eleven .footer-widget {
    margin-top: 40px;
    text-align: center;
  }
}

.footer-eleven .footer-widget h5 {
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--black);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
  .footer-eleven .footer-widget h5 {
    margin-bottom: 25px;
  }
}

.footer-eleven .f-about {
  padding-right: 30px;
}

@media (max-width: 767px) {
  .footer-eleven .f-about {
    padding: 0;
  }
}

.footer-eleven .f-about p {
  color: var(--dark-3);
  margin-top: 20px;
}

.footer-eleven .f-about .copyright-text {
  color: var(--dark-3);
  margin-top: 40px;
  text-align: center;
}

.footer-eleven .f-about .copyright-text span {
  display: block;
}

@media (max-width: 767px) {
  .footer-eleven .f-about .copyright-text {
    margin-top: 20px;
  }
}

.footer-eleven .f-about .copyright-text a {
  color: var(--primary);
}

.footer-eleven .f-about .copyright-text a:hover {
  color: var(--primary-dark);
}

.footer-eleven .f-link li {
  display: block;
  margin-bottom: 12px;
}

.footer-eleven .f-link li:last-child {
  margin: 0;
}

.footer-eleven .f-link li a {
  color: var(--dark-3);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.footer-eleven .f-link li a:hover {
  color: var(--primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 1400px) {
  .footer-eleven .newsletter {
    padding-left: 80px;
  }
}

.footer-eleven .newsletter p {
  color: var(--dark-3);
}

.footer-eleven .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.footer-eleven .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid grey;
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  padding-right: 65px;
  transition: all 0.4s ease;
}

.footer-eleven .newsletter-form input:focus {
  border-color: var(--primary);
}

.footer-eleven .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-eleven .newsletter-form .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  line-height: 42px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}

.footer-eleven .newsletter-form .sub-btn:hover {
  color: var(--white);
  background-color: var(--primary);
}

/* Footer */