/*Fonts*/
@font-face {
  font-family: "HCLTech Roobert";
  font-style: normal;
  font-weight: 100;
  src: url(./fonts/HCLTechRoobert-Light.ttf);
}

@font-face {
  font-family: "HCLTech Roobert";
  font-style: normal;
  font-weight: 300;
  src: url(./fonts/HCLTechRoobert-Medium.ttf);
}

@font-face {
  font-family: "HCLTech Roobert";
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/HCLTechRoobert-Regular.ttf);
}

@font-face {
  font-family: "HCLTech Roobert";
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/HCLTechRoobert-Bold.ttf);
}

@font-face {
  font-family: 'GothamBold';
  src: url("./fonts/Gotham-Bold.otf") format("opentype");
}

@font-face {
  font-family: "HCLTech Roobert";
  src: url("./fonts/HCLTechRoobert-Bold.ttf");
}

@font-face {
  font-family: 'Courier';
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/Courier.ttf);
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans');

.opensans {
  font-family: "Open Sans", sans-serif;
}

/*Header and body styles*/
html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  body { 
    margin: 0;
    background-color:  #F2F2F2;
  }
  .brand_logo {
    background-color: black;
}

.verticline {
  border-left: 2px solid gray;
  height: 30px;
  position: absolute;
  left: 210px;
  top: 10px;
}
/* .docTitle {
    float: left;
    text-decoration: none;
    color: white;
    margin-left: 3%;
    font-size: 14px;
    font-family: 'HCLTech Roobert';
}

.navbar {
  background: black;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar>.container-fluid {
    display: flex;
    flex-wrap: inherit;
    justify-content: left;
}
 */

 .navbar {
  border: none;
  border-radius: 0;
  margin: 0;
  min-height: 50px;
  background-color: #121212;
  padding: 0 34px;
  font-family: 'HCLTech Roobert';
  font-size: 14px;
  
}

.navbar-brand {
  padding-top: 0px;
  padding-bottom: 0px;
  height: 50px;
  line-height: 50px;
  margin-right: 38px;
  
}

.cmdname {
  font-family: Courier;
  font-weight: bold;
  font-size: 14px;
}

#brandName {
  
  min-width: 200px;
}

.brandFont {
font-family: 'HCLTech Roobert';
vertical-align: middle; 
margin-left: 30px; 
font-size: 14px; 
color:#ffffff;
}

.navbar a {

  text-decoration: none;
}

  /*Resources dropdown menu*/

  .dropdnmenu {
      position: relative;
      display: inline-block;
      padding: 2px 22px;
      margin-left: auto;
      justify-content: right;   
  }

  .dropdbtnmenu {
      background-color: #121212;
      color: white;
      font-size: 14px;
      border: none;
      cursor: pointer;
      padding: 4px 14px;
      display: block;
      z-index: 9999;
      
  }

  .dropdnmenu-content {
      display: none;
      position: absolute;
      background-color: #fcfcfc;
      min-width: 160px;
      box-shadow: 0 0 25px rgba(0,0,0,0.25);
      font-size: 11px;
      top: 30px;
      right: 10px;
      font-family: "Open Sans", sans-serif;
      z-index: 9999;
  }

  .dropdnmenu-content a {
      color: black;
      padding: 8px 24px;
      text-decoration: none;
      display: block;
      float: none;
      align-content: center;
  }

  .dropdnmenu-content a:hover {
      background-color: #dddada;
  }

  .dropdnmenu:hover .dropdnmenu-content {
      display: block;
  }


 
.brand_banner {
  text-decoration: none;
  width: 100%;
  height: 180px;
 z-index: 1;
  top: 25px;
  background-color: #121212;
  position: relative;
 
  display: flex;
  flex-direction: column;
}

.home-image {
  position: absolute;
  top: 50px;
  left: 40px;
  width: 15px;
  height: auto;
  z-index: 2;
}

.greater {
  position: absolute;
  top: 50px;
  left: 55px;
  color: white;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
}

.logo-title {
  display: flex;
  align-items: center;
  margin-top: 60px;
  margin-left: 75px;
z-index: 1;
}

.img-logo {
  width: 50px;
  height: 40px;
  margin-right: 15px;
}

.headerTitle {
position: absolute;
  color: #FFFFFF;
  font-size: 24px;
  font-family: "HCLTech Roobert";
  margin: 0;
left: 130px;
z-index: 1;

}

.subTitle {
  color: #FFFFFF;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  margin-top: 45px;
  margin-left: 20px;
z-index: 1;
}

.img-right {
  height: 180px;
  align-self: flex-end;
  position: absolute;
  right: 0;
  top: 0;
}



#video1 {
  margin:0;
  padding:0;
  margin-top: auto;
}


/*Main Content*/

.container {
  display: flex; /* Use flexbox for layout */
  flex-wrap: wrap;
}


.main-content {
  flex: 1; /* Allow main content to expand to fill remaining space */
 padding-top: 22px;
  /*margin-top: 10px;*/
  
}



/* Cards design */
.cards {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0px;
  row-gap: 35px;
  grid-auto-rows: minmax(130px, auto);
  padding-top: 20px;
}

.card {
  background-color: #FFFFFF;
  height: 184px;
  width: 312px;
  border-color:#ece9e9;
  border-radius: 6px;
  
  border: none;
}

.card .card-body > a {
  padding-top: 28px;
  padding-right: 20px;
  transform: translateX(8px);
  color: black;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-body > a {
  text-decoration: none;
  color: #FFFFFF;
  position: absolute;
  top: 145px;
  font-size: 14px;
  font-family: sans-serif;
  bottom: 0;
  padding-left: 25px;
  transition: transform 0.3s ease;
}

.card:hover{
  box-shadow: 0px 10px 20px 5px rgba(0, 128, 128, 0.2);
}

.card-body {
	background-color: #FFFFFF;
  width: 312px;
  height: 184px;
  align-items: left;
	border-radius: 6px;
	padding-top: 10px;
	padding-left: 5px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
	font-family: "HCLTech Roobert";
  padding-bottom: 10px;
  padding-left: 10px;
}
#card-text {
  font-size: 13px;
  padding-top: 55px;
  padding-left: 10px;
  align-content: left;
	font-family: "Open Sans", sans-serif;
  line-height: 20px;
  
}
/*.card:hover {
   background: linear-gradient(90deg, rgba(104,97,222,1) 1%, rgba(104,97,222,1) 3%, rgba(104,97,222,1) 3%, rgba(104,97,222,1) 3%, rgba(104,97,222,1) 3%, rgba(81,250,240,1) 50%, rgba(71,9,121,0.9893207282913166) 100%); 
  background: linear-gradient(90deg, rgb(94, 178, 220) 13%, rgb(90, 193, 188) 54%, rgba(110, 195, 198, 0.989) 150%);
  color: white;
  height: 14rem;
}*/

.card-body > a {
  text-decoration: none;
  color: #FFFFFF;
  position: absolute;
  top: 145px;
  font-size: 14px;
	font-family: "HCLTech Roobert";
  bottom: 0;
  padding-left: 25px;
  transition: transform 0.3s ease;
}

.card-body a.link-wrapper {
  position: relative;
  color: #0a0a0a;
  text-decoration: none;
  left: 0;
  top: 0;
  align-items: center;
}

.card:nth-child(n+4) {
    display: none;
}

.view-less {
    display: none;
}

.view-controls {
	position: absolute;
	left: 40%;
	padding-top: 20px;
}

.viewversion {
		height: 18px;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.link-launch::after {
  content: url("images/launch-grey.svg");
  width: 20px;
  height: 20px;
  margin: auto 5px;
  padding-top: 3px;
  display: inline-block;
  vertical-align: text-bottom;
}
/*
.description {
		margin-left: 90px;
		margin-right: 50px;
    margin-top: 10px;
    text-align: left;
    padding-bottom: 20px;
	font-size: 16px;
	font-family: "Open Sans", sans-serif;
} */

#root {
  display: flex;
  flex-direction: column;
  float: right;
  position: absolute;
  margin-top: 30px;
  padding-bottom: 60px;
}

.sidebar {
  width: 265px; /*Set the width of the sidebar */
  height: 225px;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-top: 45px;
  
}
.sidebar>h5 {
  padding:20px 20px 10px;
  font-size: 16px;
  font-family: "HCLTech Roobert";
}

.sidebar-links {
		font-family: "Open Sans", sans-serif;
		font-size: 14px;
}

.sidebar-links li {
  padding-bottom: 5px;
}

#secroot {
 display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 35px;
  grid-auto-rows: minmax(130px, auto);
  padding-bottom:60px;
}


.sechead {
  
  padding-top: 65px;
  padding-bottom: 20px;
  text-align: left;
  font-family: "HCLTech Roobert";

}

/* Footer Styles*/
.footer-container {
  padding: 1px;
  text-align: center;
  background: black;
  bottom: 0;
  width: 100%;
  position: fixed;
  font-size: 12px;
	font-family: "Arial";
  
}

.footer-launch::after {
  content: url("images/launch.svg");
  width: 18px;
  height: 18px;
  margin: auto 5px;
  padding-top: 3px;
  display: inline-block;
  vertical-align: text-bottom;
}

.footer-mail::after {
  content: url("images/email.svg");
  width: 18px;
  height: 18px;
  margin: auto 5px;
  padding-top: 3px;
  display: inline-block;
  vertical-align: text-bottom;
}

.footer-twitter::after {
  content: url("https://help.hcltechsw.com/images/twitter.png");
  width: 18px;
  height: 18px;
  margin: auto 5px;
  padding-top: 3px;
  display: inline-block;
  vertical-align: text-bottom;
}

.footer-left {
  float: left;
}

.footer-right {
  float: right;
}

.share-content {
  text-align: left;
}

.legal-content {
  text-align: right;
}


/*Mobile View styles*/
@media screen and (max-width: 700px) {
  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cards {
    display: grid;
   grid-template-columns: repeat(1, 1fr);
   column-gap: 0px;
  row-gap: 35px;
   grid-auto-rows: minmax(130px, auto);
   padding-top: 80px;
   margin-left: 30px;
 }

 #secroot {
  display: grid;
   grid-template-columns: repeat(1, 1fr);
   column-gap: 0px;
  row-gap: 35px;
   grid-auto-rows: minmax(130px, auto);
   margin-left: 30px;
 }

 .sidebar {
  width: 265px; /*Set the width of the sidebar */
  height: 225px;
  background-color: #FFFFFF;
  border-radius: 6px;
  margin-top: 15%;
  margin-left: 30px;
}
.sidebar>h5 {
  padding:10px;
  font-size: 16px;
  font-family: "HCLTech Roobert";
}

.verticline{

  display: none;
}



.sechead {
  padding-left: 140px;
  padding-top: 35px;
  padding-bottom: 20px;
  text-align: left;
  font-family: "HCLTech Roobert";
}

#root {
  display: flex;
  flex-direction: column;
  margin-left: 30px;
  padding-bottom: 60px;
}



.brand_banner {
  display: none;
}
.brand_banner {
  display: none;
}
.brand_banner img {
  display: none;
}


}

/*Tablet style*/

@media (min-width: 768px) and (max-width: 1024px) {
	
	 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cards {
    display: grid;
   grid-template-columns: repeat(2, 1fr);
   column-gap: 0px;
  row-gap: 35px;
   grid-auto-rows: minmax(130px, auto);
  
 }

 #secroot {
  display: grid;
   grid-template-columns: repeat(2, 1fr);
   column-gap: 0px;
  row-gap: 35px;
   grid-auto-rows: minmax(130px, auto);
  
 }

.verticline{

  display: none;
}
.rightsidebar {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    padding: 25px;
    position: relative;
   top: 132%;
  margin-left: 80px;
  }
  
  .playlist{
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  float: right;
  padding-left: 5px;
  position: absolute;
  top: 450%;
  left: 110px;
  padding-bottom: 30px;
}

.mainContent {
    display: flex;
    flex-direction:column;
    align-items: center;
    width: 100%;
    position: relative;
    margin-left: 50px;
	padding-top: 90px;
}


#root {
  width: 100%;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
  
.home-image {
  position: absolute;
  top: 50px; /* Adjust top position as needed */
  left: 25px; /* Adjust left position as needed */
  width: 20px; /* Adjust width as needed */
  height: 15px; /* Maintain aspect ratio */
  z-index: 2; /* Ensure it's above the background color */
  padding-right: 8px;
}



.greater {
	position: absolute;
  top: 52px; /* Adjust top position as needed */
  left: 45px;
  color: white;
  font-size: 8px;
  font-family: "HCLTech Roobert";
}

.img-right {
  height: 180px;
  float: right;
  margin-left: 130px;
 }

.img-logo {
	position: absolute;
	width: 50px;
	height: 40px;
	top: 75px;
	left: 15px;
}

.headerTitle {
  position: absolute;
  color: #FFFFFF;
  
	font-family: "HCLTech Roobert";
  top: 8%;
  left: 22%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 15px;
  
}

.subTitle {
  position: absolute;
  color: #FFFFFF;
  
	font-family: "Arial";
  top: 110px;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 10px;
  padding-top: 10px;
}

.dropdnmenu {
    position: relative;
    display: inline-block;
    padding: 2px 52px;
    margin-left: auto;
    justify-content: right;   
}

.dropdbtnmenu {
    background-color: #121212;
    color: white;
    font-size: 14px;
    border: none;
    cursor: pointer;
    padding: 4px 50px;
    display: block;
    z-index: 9999;
    font-family: "HCLTech Roobert";
}

.dropdnmenu-content {
    display: none;
    position: absolute;
    background-color: #fcfcfc;
    min-width: 160px;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
    font-size: 13px;
    top: 30px;
    right: 60px;
	  font-family: "HCLTech Roobert";
    z-index: 9999;
}
}