/* General Styling */
:root {
  --primary-color: #032bca;
  --secondary-color: #2f3640;
  --text-color: #f5f6fa;
  --background-color: #f5f6fa;
  --card-background: #2c3440;
  --container-width: 1100px;
}

body {
  height: 100vh;
  width: 100vw;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: var(--background-color);
  /* color: var(--text-color); */
  line-height: 1.6;

  padding: 0;
  margin: 0;
}

.main_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  height: 100%;
  width: 100%;
}
.main_bar_ {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 74%;
}

.search_bar {
  margin-top: 3%;
  margin-bottom: 1%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
    border:0;
      border-bottom: 1px solid #032bca;
  border-bottom: 1px solid #032bca;
 
  height: 7%;
  width: 95%;
}

.platforms {
  margin-top: 3%;
  margin-bottom: 2%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  border-radius: 20px;
  height: 7%;
  width: 95%;
}
.platform_container_inactive {
  padding-left: 15px;
  color: var(--secondary-color);
  background-color: transparent;
  width: 15%;
  height: 90%;
  border: 1px solid var(--primary-color);
 margin-right: 10px;
  border-radius: 2px;
  cursor: pointer;
}

.platform_container_active {
  margin-right: 10px;
  padding-left: 15px;
  color: var(--text-color);
  background-color: var(--primary-color);
  width: 15%;
  height: 90%;
  border-radius: 2px;
  cursor: pointer;
}
.card_software {
margin-right: 10px;
    margin-bottom: 3px;
  border-radius: 3px;
  background-color: #00000006;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  width:200px;
}
.dowanlod_software {
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 3px;
  margin-top: 3px;
  color: #b2bec3;
  padding-right: 9px;
  padding-left: 9px;
  padding-top: 2px;
  padding-bottom: 3px;
  background-color: var(--card-background);
}
.software_image {
  object-fit: scale-down ;
  height: 50%;
  width: 70%;
}

.search_bar_input {

  border: 0;
  height: 90%;
  width: 90%;
  background-color: transparent;
}
.search_bar_input :focus {
  border: 0;

  height: 90%;
  width: 90%;

}
.software_list {
    
    /* overflow-wrap: normal;
    
     display: flex;
  flex-direction:row;
  justify-content: flex-start;
  align-items: flex-start; */
  height: 75%;
  width: 95%;
display: flex;
flex-wrap: wrap;
}
.side_bar {
  border-right: 1px solid #b2bec3;
  height: 100%;
  width: 25%;
}
.side_bar_section_icon {
  height: 7%;
  width: 100%;
}
.side_bar_section {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: var(--background-color);
  height: 7%;
  width: 100%;
}
.side_bar_section:hover {
  padding-left: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--primary-color);
  margin-bottom: 2px;
  background-color: #2c344046;
  height: 7%;
  width: 97%;
}
html {
  scroll-behavior: smooth;
}
