/* Definitons*/

:root {
  --theme-color: #FB2056;
  --theme-bg-color: black;
  --optional-color-one:#00b315;
  --optional-color-two:#ffc800;
  --optional-color-three:#008080;
}

.bg-theme-color{
  background-color: #FB2056;
  color:white;
  transition: 0.3s;
}
.bg-theme-bg-color{
  background-color: #1bc1a0;
  color:black;
  transition: 0.3s;
}
.color-theme-color{
  color: #FB2056;
}

.color-theme-bg-color{
  color: black;
}
/* Definitons end*/

/* To give space while scrolling from above. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}

/*************************************************************************************************************************
Header
*************************************************************************************************************************/
.offer-ribbon{
  background-color: var(--theme-color);
  padding: 7px;
  color:white;
  font-weight: 600;
  text-align: center;
}
@media(max-width:335px){
  .hide-on-xs{
   display: none;
  }
}

/** Move this margin-top if want to adjust with the top ribbon **/
nav{
  margin-top: 38px;
  font-weight: 600;
}

nav ul li a{
color: black !important;
}

.navbar{
 background-color: white;
 font-size: 18px;
}

.right-side{
  margin-right: 20px;
}
.navbar-nav{
  margin-left:30px;
  margin-top: -5px;
}
.nav-btn{
 background-color: var(--theme-color);
 font-weight: 600;
 margin-top: -5px;
}

@media(max-width:991px){
  .login-btn{
    margin-left:28px;
  }
}
/*************************************************************************************************************************
Hero
*************************************************************************************************************************/
#hero{
  margin-top: 130px;
}


.hero-card{
  background-attachment: fixed;
  background-image: url('../img/hero-bg.png');
  background-color: rgba(0,0,0,0.8);
  background-blend-mode: darken;
  padding: none !important;
  width: 100% !important;
  min-height: 62vh;
  height: auto;
}
.highlight{
  background-color: white;
  color:black;
}
.custom-card {
  border-radius: 10px;
  padding: 8px;
  background-color: white;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.custom-card .icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.custom-card .icon-box i {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-card .title {
  margin-left: 15px;
  font-size: 18px;
  font-weight: bold;
}
.web-photo{
  border-radius: 100%;
}
.hero-card h1{
  color: white;
  font-size: 50px;
  font-weight: 700;
  margin: 40px 0px 0px 20px;
}
@media(max-width:991px){
  .hero-card h1{
    font-size: 40px;
    margin: 40px 0px 0px 20px;
  }
}
@media(max-width:550px){
  .hero-card h1{
    font-size: 30px;
    margin: 20px 0px 0px 20px;
  }
}
@media(max-width:380px){
  .hero-card h1{
    font-size: 30px;
    margin: 0px 0px 0px 0px;
  }
}


.hero-card h4{
  color: white;
  margin: 20px 0px 0px 20px;
}
@media(max-width:380px){
  .hero-card h4{
    margin: 30px 0px 0px 0px;
  }
}


.hero-card-child{
  padding-top: 40px;
}

.hero-card button{
  font-weight: bold;
  margin: 0px 0px 100px 20px;
  padding: 10px;
}
@media(max-width:991px){
  .hero-card button{
    font-weight: 400;
    padding: 8px;
  }
}
@media(max-width:380px){
  .hero-card button{
    margin: 0px 0px 60px 0px;
  }
}
@media(max-width:337px){
  .hero-card button{
    margin: 0px 0px 20px 0px;
  }
}

.hero-quote-btn{
  background-color: var(--theme-color);
}
.hero-contact-us{
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.hero-contact-us:hover{
  background-color: white;
  color: black;
}

/*************************************************************************************************************************
About Us
*************************************************************************************************************************/

.about-us h2{
  font-size:40px;
  padding: 0px 0px 0px 0px;
  font-weight: 700;
}
.about-us p{
  margin-top:10px;
  font-size:20px;
  font-weight: 500;
}
.icon-social{
  font-size:40px;
}
@media(max-width:991px){
  .about-us img{
    height: 80%;
    margin-left:150px;
  }
  .about-us-heading-1{
    margin:-50px 0px 0px 0px;
  }
}
@media(max-width:768px){
  .about-us img{
    margin-left:100px;
  }
}
@media(max-width:470px){
  .about-us img{
    margin-left:70px;
  }
}
@media(max-width:370px){
  .about-us img{
    margin-left:40px;
  }
}

/*************************************************************************************************************************
Why Us
*************************************************************************************************************************/
.why-us{
  /* background-color: black; */
  background-image: url('../img/hero-bg.png');
  background-color: rgba(0,0,0,0.8);
  background-blend-mode: darken;
  background-attachment: fixed;
}

/* To have spaces on the side */
.why-us-card{
  padding: 0px 20px 0px 20px;
}
@media(max-width:991px){
  .why-us-card{
    padding: 0px 15px 0px 15px;
  }
}

.why-us h2{
  color:white;
  font-size:40px;
  font-weight: 700;
  margin:90px 0px 0px 0px;
}
@media(max-width:730px){
  .why-us h2{
    font-size:35px;
  } 
}
.gradient{
  font-size:45px;
  font-weight: 800;
  color: var(--theme-color);
}
.why-us p{
  color:white;
  font-size:20px;
  margin:20px 0px 0px 0px;
}
.why-us-icon{
  font-size: 40px;
  margin:30px 0px 0px 0px;
}
.why-us h3{
  font-size: 20px;
  color: white;
  margin:10px 0px 0px 0px;
}

/*************************************************************************************************************************
Join Us
*************************************************************************************************************************/
.join-us{
  background-color: black;
  /* background-image: url('../img/hero-bg.png'); */
  /* background-color: rgba(0,0,0,0.8); */
  background-blend-mode: darken;
  background-attachment: fixed;
  border-radius: 22px;
}

/* To have spaces on the side */
.join-us-card{
  padding: 0px 20px 0px 20px;
}
@media(max-width:991px){
  .join-us-card{
    padding: 0px 15px 0px 15px;
  }
}
.join-us-heading{
  color:white;
  font-weight: 700;
  font-size: 30px;
  margin:-5px 0px 40px 0px;
}

.join-us p{
  color:white;
  font-size:20px;
  margin:20px 0px 0px 0px;
}
.join-us-headline{
  color:white;
  margin: 20px 0px 0px 0px;
  font-size: 45px;
  font-weight: 700;
}
.join-us-featured-image{
  /* border-radius:72px;  */
  height: 100%;
  width:auto;
  /* padding:30px; */
}
@media(max-width:1026px){
  .join-us-headline{
    font-size: 35px;
  }
}
.join-us i{
  font-size: 25px;
  color: white;
}

.join-us ul li{
  list-style: none;
  margin-left: -30px;
  color: white;
  font-size: 25px;
}

@media(max-width:575px){
  .join-us i{
    font-size: 18px;
  }
  .join-us ul li{
    font-size: 18px;
  } 
}


@media(max-width:760px){
  .join-us-headline{
    font-size: 25px;
  }
}

/*************************************************************************************************************************
Professionalism
*************************************************************************************************************************/
.professionalism img{
  height: 80%;
  width: auto;
  margin-right: 0;
}

.professionalism h2{
  font-size:40px;
  padding: 50px 0px 0px 0px;
  font-weight: 700;
}
@media(max-width:1245px){
  .professionalism h2{
    padding: 10px 0px 0px 0px;
  } 
}
@media(max-width:992px){
  .professionalism h2{
    font-size:30px;
    padding: 0px 0px 0px 0px;
    font-weight: 700;
  } 
  .professionalism h4{
    margin-top: -20px;
  } 
}






/*************************************************************************************************************************
Domains we server
*************************************************************************************************************************/

.domains-we-serve{
  /* background-color: black; */
  background-image: url('../img/hero-bg.png');
  background-color: rgba(0,0,0,0.8);
  background-blend-mode: darken;
  background-attachment: fixed;
  color: white;
}


.domains-we-serve h2{
  color:white;
  font-size:40px;
  font-weight: 700;
  /* margin:90px 0px 0px 0px !important; */
}













/*************************************************************************************************************************
Our flex
*************************************************************************************************************************/
.our-flex h2{
  font-size:40px;
  font-weight: 700;
  margin: 0px 0px 30px 0px;
}
@media(max-width:991px){
  .our-flex h2{
    font-size: 34px;
    font-weight: 700;
    margin: 30px 0px 30px 0px;
  } 
}
.our-flex-card{
  min-height: 20vh;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  width: 100%;
  margin: 10px 0px 10px 0px;
}
.our-flex-card p{
  color: black;
  font-weight: 700;
  font-size:30px;
  padding: 20px 0px 0px 0px;
}
.our-flex i{
  color: var(--theme-color);
}

/*************************************************************************************************************************
Our products
*************************************************************************************************************************/
.our-products h2{
  font-size:40px;
  padding: 0px 0px 0px 0px;
  font-weight: 800;
}
.our-products p{
  font-size: 20px;
}

/*************************************************************************************************************************
Our Tech Stack
*************************************************************************************************************************/

.tech-stack{
  background-color: white;
 }
 .tech-stack h2{
  font-size:40px;
   font-weight: 700;
 }
 .tech-stack-1{
   box-shadow: 1px 1px 3px 3px grey;
   background-color: white;
   padding: 30px;
   border-radius: 20px;
   /* margin: 0px 10px 0px 0px; */
   margin: 10px;
 }
 .tech-stack-2{
   box-shadow: 1px 1px 3px 3px grey;
   background-color: white;
   padding: 30px;
   border-radius: 20px;
   margin: 10px;
 }
 .tech-stack-3{
   box-shadow: 1px 1px 3px 3px grey;
   background-color: white;
   padding: 30px;
   border-radius: 20px;
   margin: 10px 10px 10px 10px;
 }
 .tech-stack-4{
   box-shadow: 1px 1px 3px 3px grey;
   background-color: white;
   padding: 30px;
   border-radius: 20px;
   margin: 10px 10px 10px 10px;
 }
/*************************************************************************************************************************
Our Tech Stack
*************************************************************************************************************************/

/*************************************************************************************************************************
Our Services
*************************************************************************************************************************/
.our-services img:hover{
  cursor: pointer;
}
.our-services h2{
  font-size:40px;
  padding: 0px 0px 0px 0px;
  font-weight: 700;
}
.our-services p{
  font-size: 20px;
}
/*************************************************************************************************************************
Footer
*************************************************************************************************************************/
.footer{
  background: black;
  color: white;
}

.footer span{
  color: var(--theme-color);
}
.footer a{
  text-decoration: none !important;
}
.footer ul{
  list-style: none;
}
.footer ul li{
  margin-left: -30px;
}
.footer ul li:hover{
  cursor: pointer;
  color: var(--theme-color);
}

/*************************************************************************************************************************
FAQ & Contact
*************************************************************************************************************************/


.cont-faq {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}

.question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 80px 20px 10px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px){
  .wrapper {
  /* width: 80%; */
}
}

.contact-us{
  background-image: url('../img/contact-us-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
}
.contact-us h2{
  font-size:40px;
  padding: 0px 0px 0px 0px;
  font-weight: 700;
}
.contact-us input[type=text]{
  padding: 10px;
  border: 1px solid black;
  width: 80%;
}
.contact-us textarea{
  padding: 10px;
  border: 1px solid black;
  width: 80%;
}
.contact-us button{
  padding: 10px;
  width: 80%;
}

/*************************************************************************************************************************
Subscribe
*************************************************************************************************************************/


.subscribe{
  padding: 0px 20px 0px 20px;
}
@media(max-width:991px){
  .subscribe{
    padding: 0px 15px 0px 15px;
  } 
}
.subscribe h2{
  color: black;
  font-size:40px;
}





.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	right:20px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}


/*************************************************************************************************************************
Join Us Page
*************************************************************************************************************************/
.join-us-home{
  background-image: url('../img/join-us-home.png');
  min-height: 20vh;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
}
.join-us-home h1{
  color: black;
  font-weight: 800;
  text-align: center;
  padding: 0px 180px 0px 180px;
  margin: 100px 0px 20px 0px;
  font-size: 50px;
}
@media(max-width:1200px){
  .join-us-home h1{
    padding: 0px 100px 0px 100px;
  }
  .join-us-home h4{
    padding: 0px 30px 0px 30px !important;
  } 
}
@media(max-width:991px){
  .join-us-home h1{
    padding: 0px 70px 0px 70px;
    font-size: 36px;
  }
  .join-us-home h4{
    font-size: 20px;
  } 
}
@media(max-width:768px){
  .join-us-home h1{
    padding: 0px 30px 0px 30px;
    font-size: 36px;
  }
  .join-us-home h4{
    padding: 0px 10px 0px 10px !important;
    font-size: 20px;
  }
  .join-us-home{
    background-image: url('../img/join-us-home-mobile.png');
  } 
}
@media(max-width:500px){
  .join-us-home{
    margin-top: 50px;
  }
}
@media(max-width:399px){
  .join-us-home h1{
    padding: 0px 10px 0px 10px;
    font-size: 28px;
  }
  .join-us-home h4{
    padding: 0px 10px 0px 10px !important;
    font-size: 16px;
  }
}
.join-us-home h4{
  color: grey;
  font-weight: 700;
  text-align: center;
  padding: 0px 180px 0px 180px;
  margin: 30px 0px 20px 0px;
}

.join-us-home button{
  margin: 30px 0px 200px 0px;
}
@media(max-width:527px){
  .join-us-home button{
    margin: 30px 0px 10px 0px;
  } 
}
.join-us-home span{
  color: var(--theme-color);
  font-weight: 800;
  text-align: center;
}
.btn-developer-join-us{
background-color: var(--theme-color);
color: white;
}
.btn-developer-join-us:hover{
  background-color: transparent;
  color: black;
}
.btn-sales-join-us{
  background-color: var(--theme-color);
}
.btn-sales-join-us:hover{
  background-color: var(--theme-color);
  color: white;
}

#current-openings h2{
  font-size:40px;
  padding: 0px 0px 0px 0px;
  font-weight: 700;
}
.openings-card{
  border:2px solid grey;
  border-radius: 20px;
}
.openings-card h3{
  padding: 10px;
  font-weight: 700;
  text-align: center;
}
.openings-card p{
  padding: 6px;
  font-weight: 700;
  text-align: center;
  color: grey;
}

.benefits-join-us-page{
  background-image: url('../img/benefits-bg.png');
  max-height: 73vh;
  padding: 20px 40px 70px 40px;

}
.benefits-container{
  background-color: white;
  border-radius: 14px;
  padding: 10px;
}
.benefits-container h2{
  font-weight: 800 !important;
  margin-top: 50px;
}
.benefits-container ul li{
  list-style: none;
  font-size: 20px;
  margin-left: -30px;
  font-weight: 500;
}

.real-benefits h2{
  font-size: 40px;
  font-weight: 700;
  /* margin: 20px 0px 30px 0px; */
}
@media(max-width:991px){
  .real-benefits h2{
    font-size: 34px;
  }
}
.real-benefits p{
  font-size: 20px;
}

/*************************************************************************************************************************
Register Page
*************************************************************************************************************************/

.register-home{
  background-color: var(--theme-color);
  background-image: url('../img/register-page-bg.png');
  background-color: rgba(0, 0, 0, 0.6);
  max-height: 38vh;
  min-height: 38vh;
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 90px;
}

.register-home h2{
  color: white;
  font-size: 50px;
  font-weight: 700;
  margin-top: 40px;
}
.register-home-child{
  background-color: white;
  margin-top: -135px;
}
.register-card{
  
}
.plate-1{
  /* background-color: #25d366; */
}
.icon-box{
  background-color: white;
  margin-top: -10px;
  padding: 19px 0px 5px 0px;
}
.icon-box p{
  /* color: white; */
  font-weight: bold;
}

.icon-box i{
  font-size: 20px;
  margin-top: 3px;
}
.main-reg-field-holder{
  padding: 0px 10px 0px 10px;
}

@media(max-width:1246px){
  .register-home-child{
    margin-top:-100px;
  }
}