
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color:rgb(129,129,129);
}

/* Δήλωση της γραμματοσειράς Comfortaa - Regular */
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 400;
  src: url('Comfortaa/Regular.woff2') format('woff2');
  font-display: swap;
}

/* Δήλωση της γραμματοσειράς Comfortaa - Bold */
@font-face {
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 700;
  src: url('Comfortaa/Bold.woff2') format('woff2');
  font-display: swap;
}

body{
  overflow-x:hidden;
  background-color:white;
}

nav{
  display: flex;
  padding-left:3%;
  padding-right: 3%;
  padding-bottom: 2%;
  align-items: center;
	justify-content:center;
}

.Company_Logo {
	padding:0.4rem;
    display: flex;
    flex: 1;
		vertical-align:middle;
		align-items:center;
}

.Company_Logo a{
	display:inline-block;
}

.Company_Logo img{
    text-align: right;
    width: 200px;
    padding: 0.5rem;
}

.Company_Logo img:hover{
    opacity: 0.5;
}

.Company_Logo .order{
    text-align: right;
    width: 100%;
}

.Company_Logo .order a{
    
	text-decoration:none;
	font-size:20px;
	font-family:"Comfortaa",serif;
	
	background:brown;
	border:2px solid black;
	
		color:white;
		padding:0.8rem;
		transition:0.3s ease-in-out background-color;
}

@media(max-width:700px){

	.Company_Logo .order{
		display:none;
	}
	
}

.Company_Logo .order a:hover{
	background-color: rgb(109,109,109); 
	color:black;
}

.Company_Logo .order i{
	vertical-align:middle;
	font-size:22px;
}


.Myheader{
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*Συμπεριφορά των link*/
.Navigation-Links{
  flex: 1;
  text-align: right;
  background:transparent; 
}

.Navigation-Links ul li{
  list-style: none;
  display:inline-block;
  padding: 8px 12px;
  position: relative;
}

.Navigation-Links ul li a{
  font-family: "Comfortaa", serif;
  font-size:18px;
    font-weight: 700;
  color:black;
  text-decoration: none;
}


.Navigation-Links a {
  transition: color 0.5s ease-in-out;
}

.Navigation-Links a:hover,
.Navigation-Links li:hover > a { 
  color: rgb(109,109,109); 
}

.Navigation-Links li .button{
  box-shadow: 3px 4px 5px black;
  border-radius: 15px;
  background-color: transparent;
  font-size: 18px;
  font-weight: 700;
  font-family: "Comfortaa",serif;
  padding: 4px;
  text-align: center;
    cursor: pointer;
    pointer-events: visible;
    transition: color 0.5s ease-in-out;
}

.Navigation-Links li .button:hover{
  color: rgb(109,109,109); 
}


.Navigation-Links .user{
  background-color:rgb(133, 132, 132);
  backdrop-filter: blur(4px);
  width: 100%;
  font-family: "Comfortaa", serif;
  color:snow;
  padding: 5px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  list-style: none;
  display: block;
    text-align: center;
}

/* Dropdown container */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left:15px;
  background-color:white;
    box-shadow: 2px 3.5px 6px grey;
  padding: 10px;
  border-radius: 15px;
  border: 2px solid black;
  z-index: 9999;
  width:650px; 
  height: auto;
  opacity: 0;
  text-align: center;
  justify-content: center;
  transition: 0.5s ease-in-out;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
}


/* Category headings */
.dropdown-menu h2{
  font-family: "Comfortaa", serif;
  font-size: 21.5px;
  margin-bottom: 5px;
  color:black;
  font-weight: 700;
  border-bottom: 2.4px solid black;
  border-radius: 5px;
  padding-bottom: 4px;
}

.dropdown-menu li{
  margin-bottom: 6px;
}

.dropdown-menu > li {
  display: flex;
  flex-direction: column; 
  width: 100%;
  align-items: center;
  text-align: center;
}

.Phone_Navigation{
  display: none;
}

.Phone_Navigation li{
  text-align: left;
}

.Hamburger_Toggle{
  display: none;
  align-items: center;
}



@media(max-width:700px){
  .Company_Logo img{
    width: 120px;
    height: auto;
  }
}


@media(min-width:700px) and (max-width:1000px){
  .Company_Logo img{
    width: 180px;
    height: auto;
  }
}


@media(max-width:1400px){

  .Dekstop_Nav{
    display: none;
  }

  .Navigation-Links ul li a{
    font-weight: 600;
    color:black;
  }

  .Phone_Navigation{
      display: flex;
      position: fixed;
      flex-direction: column;
      inset: 0 0 0 60%;
      padding:min(7.5rem,8.5rem) 0.2rem;
      background-color:rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(0.2275rem);
      z-index: 1000;
      gap: 1rem;
      transform: translateX(100%);
      transition:transform 1s ease-in;
    }

    .Phone_Navigation[data-visible = "true"]{
      transform: translateX(0%);
    }
    
    .Hamburger_Toggle{
      display: block;
      font-size: 22px;
      color:black;
      align-items: center;
      z-index: 9999;
    }
  }

  @media(max-width:600px){
    .Phone_Navigation{
    inset: 0 0 0 45%;
  }
}

  @media(max-width:300px){
    .Phone_Navigation{
    inset: 0 0 0 30%;
  }
}

@media(max-height:650px){
  .Phone_Navigation{
    overflow-y: scroll;
  }
}

/*Home_Picture*/
.HomePicture_Container{
  width:100%;
  height: auto;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Image within .Section_Itself */
.Home_Picture_Itself img{
  height: 700px;
  width: 100%;
  max-width: 1200px;
}

.HomePicture_Container h1{
  bottom: 30px;
  position: absolute;
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
      
      font-family: "Comfortaa", serif;
      font-size:40px;
      font-weight: 800;
      font-style: italic;
      color:black;
}

@media(max-width:500px){

  .HomePicture_Container h1{
    font-size: 27px;
  }

}

@media(max-width:350px){

  .HomePicture_Container{
    height: 370px;
  }

  .Home_Picture_Itself img{
    width: 100%;
  	height:370px;
  }

}

@media(min-width:350px) and (max-width:500px){

  .HomePicture_Container{
    height: 500px;
  }
  

  .Home_Picture_Itself img{
    width: 100%;
  	height:500px;
  }

}

.Draw_lines{
  padding-top: 4.5vh;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding-bottom: 4.5vh;
    overflow-x:hidden;
}

.Draw_lines h1 {
  font-family: "Comfortaa", serif;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  position: relative;
  display: inline-block;
  color: black;
}

.Draw_lines h1::before,
.Draw_lines h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 150px;
  height: 4px;
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  overflow-x:hidden;
}

.Draw_lines h1::before {
  left: -160px; 
  transform: translateY(-50%);
}

.Draw_lines h1::after {
  right: -160px;
  transform: translateY(-50%);
  transform: rotate(180deg);
}

@media(max-width:300px){
.Draw_lines h1 {
  font-size: 25px;
}
}

@media(min-width:300px) and (max-width:750px){
  .Draw_lines h1 {
    font-size: 33px;
  }
}

@media(max-width:900px){

.Draw_lines{
  overflow-x: hidden;
}

.Draw_lines h1::before,
.Draw_lines h1::after {
 display: none;
}

}

/* Beds_Show_Container Styles */
.Beds_Show_Container {
  width: 100%;
  max-width:1200px;
  height: auto;
  display: flex;
  position: relative;
}
  
/* Bed_CardItself image Styles */
.Bed_CardItself img {
  height: 800px;
  width: 100%;
  flex: 1;
}


@media(max-width:1050px){

.Bed_CardItself img {
  height: 700px;
}

}

@media(min-width:750px) and (max-width:900px){

  .Bed_CardItself img {
    height: 600px;
  }
  
}


@media(min-width:550px) and (max-width:750px){

  .Bed_CardItself img {
    height: 500px;
  }
  
}

@media(min-width:450px) and (max-width:550px){

  .Bed_CardItself img {
    height: 400px;
  }
  
}

@media(max-width:450px){

  .Bed_CardItself img {
    height: 325px;
  }

  .Beds_Show_Container .swiper-pagination{
      display: none;
    }

}

.Bed_CardItself .Bed_Description a{
  position: absolute;
  bottom:8%;
  left:5%;
  transform: translateY(-50%);
  text-decoration: none;
    font-family: "Comfortaa", serif;
    font-size: 40px;
    font-weight: 800;
  color:black;
  border-left: 4px solid rgb(109,109,109);
  padding-top: 1rem;
}

.Bed_CardItself .Bed_Description a:hover {
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  background-clip : text;
  color : transparent;
  border-left : 4px solid rgb(109, 109, 109);
}

@media(max-width:500px){

.Bed_CardItself .Bed_Description a{
  font-size: 30px;
  font-weight: 600;
}

}

/*Our Beds Gallery*/ 
/*Beds.html*/
.ShowRoum_Container{
  padding-top: 4vh;
  padding-left: 12%;
  padding-right: 12%;
  padding-bottom: 4vh;
  text-align: center;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.ShowRoum_Gallery{
  display: inline-block;
  margin : 5px;
  width:400px;
  background-color:rgb(237,244,245);
  box-shadow: 0 18px 8px rgba(0, 0, 0, 0.6);
  border-radius: 15px; 
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: 0.3s ease-in-out;
}

.ShowRoum_Container .ShowRoum_Gallery .ShowRoum_Description{
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  font-family: "Comfortaa", serif;
    font-size: 20px;
    font-weight: 800;
    color: black;
}

  .ShowRoum_Gallery img{
    width:100%;
    height: 270px;
    border-radius: 15px;
    border-bottom: 2px solid black;
    box-shadow: 0 12px 8px rgba(0, 0, 0, 0.3);
  }

  .ShowRoum_Container .ShowRoum_Gallery:hover{
    transform: scale(1.1);
  }

/*Beds Gallery pages*/
.Pagination_Container{
  margin-top: 2rem;
  border-top:2px solid rgb(139,139,139);
  padding-top: 1rem;
}

.Pagination{
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
}

.Pagination_Link a{
  padding: 6px 8px;
  text-decoration: none;
  background:transparent;
  border: 1px solid #bbbbbb;
  margin: 0 4px;
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  color:black;
  border-radius: 7px;
  font-family: "Comfortaa",serif;
  font-weight: 500;
    font-size: 16px;
}

.Pagination_Arrow a{
  padding: 2px 6px;
  text-decoration: none;
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  border: 1px solid #bbbbbb;
  margin: 0 2px;
  color: black;
  border-radius: 7px;
  font-family: "Comfortaa",serif;
  font-weight: 400;
    font-size: 14.75px;
}

.Pagination_Link a:hover,
.Pagination_Arrow a:hover{
  opacity: 0.5;
}

.Pagination_Link a.active {
  opacity: 0.7;
}

.Pagination_Link a.active:hover{
  opacity: 0.2;
}


@media(max-width:500px){
  
  .ShowRoum_Container{
    padding: 2.5%;
    overflow: hidden;
  }

  .ShowRoum_Gallery{
    max-width: 350px;
    width: 100%;
  }

  .ShowRoum_Gallery img{
    width:100%;
    height: 225px;
  }

}

@media(max-width:350px){
  
  .ShowRoum_Container{
    padding: 2.5%;
    overflow: hidden;
  }

  .ShowRoum_Gallery{
    max-width: 300px;
    width: 100%;
  }

  .ShowRoum_Gallery img{
    width:100%;
    height: 200px;
  }

}

/*Our Inform*/
.Information_Container{
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;

  gap: 5em;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.Communication_Box{
  width: 1300px;
  height: auto;
  padding:  2rem;

  display: flex;
  flex-direction: row;
  align-items:flex-start;
  justify-content: space-evenly;
}

.Information_Container .Communication_Content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
}

.Information_Container .Communication_Content h1{
  padding-bottom: 5vh;
    font-family: "Comfortaa", serif;
    font-size:30px;
    font-weight: 400;
    color:black;
  text-align:center;
}

.Information_Container .Information{
  display: flex;
  flex-direction: column;
  width: 500px;
}

.Information_Container .Information h1{
  padding-bottom: 5vh;
    font-family: "Comfortaa", serif;
    font-size:30px;
    font-weight: 400;
    color: black;
  text-align: center;
}

.Information_Container .Information li{
  list-style: none;
}

.Information_Container iframe{
  
  border-radius: 10px;
  width: 1250px;
  height: 400px;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

.Information_Container iframe:hover{
  opacity: 1.0;
  transform: scale(1.1);
}

/*Socials*/
.Information .socials{
  padding-top: 5px;
  padding-bottom: 5px;
  width: auto;
  justify-content: space-between;
  text-align: center;
}

.Information .socials a{ 

  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgb(109, 109, 109);
  border-radius: 50%;
  font-size: 25px;
  color:black;
  text-decoration: none;
  margin: 5px;
  transition: 0.5s;

}

.Information .socials a:hover{ 
  opacity: 0.5;
  cursor: pointer;
}

.Information .socials a:active{ 
  opacity: 1.0;
}

/*Communication Platform*/

.Communication_Label_Itself{
  padding-bottom:1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.Communication_Label_Itself input{
  display: flex;
  flex-direction: column;

  color:black;
  background-color:transparent;

  width: 400px;
  height: auto;
  padding:4px;
  outline:none;
  border:none;
  border-bottom:2px solid black;

  padding-right: 20px;/*icon space*/
    font-family: "Comfortaa",serif;
    font-size: 16.5px;
    font-weight:600;
}


.Communication_Label_Itself .TextArea_Label textarea{
  position: relative;
  color:black;
  background-color:transparent;
  width: 400px;
  height: auto;
  padding:4px;
  outline:none;
  resize: vertical;

  border: 2px solid black;
  transition: 0.3s ease;
    font-family: "Comfortaa",serif;
    font-size: 16.5px;
    font-weight:600;
}

.TextArea_Label{
  display:flex;
  flex-direction: column-reverse;
}

.Communication_Label_Itself  .TextArea_Label textarea:focus,
.Communication_Label_Itself .TextArea_Label textarea:placeholder-shown{
  border:2px solid black;
}

.Communication_Label_Itself .TextArea_Label textarea:focus,
.Communication_Label_Itself .TextArea_Label textarea:not(:placeholder-shown){
  border:2px solid rgb(109,109,109);
}


.Communication_Label_Itself .TextArea_Label textarea:not(:focus){
  border:2px solid black;
}

.Communication_Label_Itself .TextArea_Label label{
  position: relative;
  color: black;
  transition: 0.3s ease;
    font-family: "Comfortaa",serif;
    font-size: 18px;
    font-weight: 700;
}

.Communication_Label_Itself .TextArea_Label textarea:focus ~ label,
.Communication_Label_Itself .TextArea_Label textarea:not(:placeholder-shown) ~ label{
  color:rgb(109, 109, 109);
}

.Communication_Label_Itself .TextArea_Label textarea:not(:focus) ~ label{
  color:black;
}

.Communication_Label_Button input{
  border-radius:25px;
  background-color:rgb(109, 109, 109);
  color:black;
  width:400px;
  align-items:center;
  justify-content:center;
  text-align:center;
  height:30px;
    font-family: "Comfortaa",serif;
    font-size: 16px;
    font-weight: 600;
}

.Communication_Label_Button input:hover{
  opacity: 0.5;
}

.Communication_Label_Itself label {
  color: black;
  top: 0;
  left: 0;
  position: absolute;
  transition: 0.3s ease;
    font-family: "Comfortaa",serif;
    font-size: 17px;
    font-weight: 700;
}
.Communication_Label_Itself input:focus ~ label,
.Communication_Label_Itself input:placeholder-shown ~ label{
  color:black;
}

.Communication_Label_Itself input:focus ~ label,
.Communication_Label_Itself input:not(:placeholder-shown) ~ label{
  color:rgb(109, 109, 109);
  top: -5px;
  transform: translateY(-50%);
}
.Communication_Label_Itself input:not(:focus) ~ label{
  color: black;
}

.Communication_Label_Itself input:focus,
.Communication_Label_Itself input:not(:placeholder-shown){
  border-bottom: 2px solid rgb(109, 109, 109);
}

.Communication_Label_Itself input:not(:focus){
  border-bottom: 2px solid black;
}


.Communication_Label_Itself input:-webkit-autofill:hover,
.Communication_Label_Itself input:-webkit-autofill:focus,
.Communication_Label_Itself input:-webkit-autofill:valid{
  -webkit-text-fill-color: black !important;
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

@media(max-width:1100px) {
.Information_Container{
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  gap: 2em;
  justify-content:left;
  text-align: left;
  overflow-x: hidden;
}

.Information_Container iframe{
  
  border-radius: 10px;
  width: 100%;
  height:500px;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
  padding: 20px;
}

.Information_Container iframe:hover{
  opacity: 1.0;
  transform: scale(1.1);
}
}

@media(min-width:1100px) and (max-width:1300px){
  .Information_Container iframe{
    width: 1050px;
    height:500px;
  }
  
}

@media(min-width:950px) and (max-width:1100px){
  .Information_Container .Information{
    width: 400px;
    margin-left: 1.25%;
  }

  .Information_Container .Communication_Content{
    width: 400px;
    margin-right:1.25%;
  }
}

@media(max-width:950px){
  .Communication_Box{
    width: 100%;
    display: flex;
    flex-direction: column;
      align-items:center;
      justify-content:center;
      text-align: left;
  }
  .Information_Container .Communication_Content{
    max-width: 400px;
    width: 100%;
  }
  .Communication_Label_Itself input{
    max-width: 400px;
    width: 100%;
  }
  .Communication_Label_Itself .TextArea_Label textarea{
    max-width: 400px;
    width: 100%;
  }
  .Communication_Label_Button input{
    max-width: 400px;
    width: 100%;
      font-size: 14px;
  }
  

  .Information_Container .Communication_Content h1{
    padding-bottom: 3vh;
    padding-top: 4vh;
      font-size:28px;
  }
  .Information_Container .Information{
    width: 100%;
    max-width: 400px;
  }
}


/*Extra Information on Beds*/
.Extra_Information_Container{
	
  padding-top: 5vh;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 8vh;
  gap:5rem;

    display: flex;
	flex-direction:row; 
	align-items: flex-start;
	text-align:start;
	justify-content:center;
    overflow-x: hidden;
	
}


.Extra_Information_Container .Extra_Information_Description{
    display: flex;
    flex-direction: column;   
    width: 100%;
  }

.Extra_Information_Container .Extra_Information_Description h1{
  color: black;
  font-family: "Comfortaa", serif;
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
    padding-top: 0.75rem;
    border-left: 3px solid rgb(109,109,109);
    margin-bottom: 1rem;
    display: inline-block;
}

.Extra_Information_Container .Extra_Information_Description p{
  color:black;
  font-size: 17px;
  font-family: "Comfortaa", serif;
  font-weight: 400;
    line-height: 1.4rem;
}

.Lower_Text{
  font-size: 30px;
  font-weight:400;
}

#Zoom_Image{
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
		text-align:center;
		justify-content:center;
		align-items:center;
  }
  
  #Zoom_Image img{
    width: 700px;
    height: 475px;
  }
  
  #Zoom_Image::after {
    display: var(--display);
    content: '';
        width:100%;
        height:100%;
    background: var(--url);
    background-size: 200%;
    background-position: var(--zoom-x) var(--zoom-y);
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
  
.column{
  display: flex;
  flex-direction: column;
    align-items: center;
}

.BedsPictures_Container{
    width: 550px;
    height: auto;
      position: relative;
}
.BedsPicture_Itself{
    display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
}

.BedsPicture_Itself img{
    width: 250px;
    height: 180px;
      box-shadow: 2px 2px 2px rgb(109, 109,109);
}

#sugestPrice{
  display:none;
  color:red;
  font-size: 20px;
  font-style: italic;
  font-family: "Comfortaa",serif;
  font-weight: 800;
}

.Extras{
  color:red;
  font-size: 18px;
  font-style: italic;
  font-family: "Comfortaa",serif;
  font-weight: 800;
}

.Forward{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 5px;
}
.Backward{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5px;
}

.Backward .bx,
.Forward .bx{
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  color:rgb(55,56,57); /* Icon color */
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
    font-size: 18px;
}

.swiper-pagination-bullet{
  --swiper-pagination-color:rgb(109,109,109);
}

@media(max-width:1400px){
  .Extra_Information_Container{
      padding: 4%;
      display: flex;
      flex-direction: column;
        gap: 30px;
  }
	
	#Zoom_Image{
		align-self:center;
		text-align:center;
		justify-content:center;
		align-items:center;
  }
  
    #Zoom_Image img{
      width: 100%;
      max-width: 1000px;
      height: auto;
		text-align:center;
		justify-content:center;
		align-items:center;
		align-self:center;
    }

    .column{
      width: 100%;
    }
}

@media(max-width:500px){
  .BedsPictures_Container{
    width: 100%;
    max-width: 370px;
  }

  .BedsPicture_Itself img {
    width: 220px;
      height: auto;
  }

    
  #Zoom_Image img{
    width: 100%;
    min-height:250px;
    height: auto;
  }

}

@media(min-width:500px) and (max-width:700px){
  .BedsPictures_Container{
    width: 100%;
    max-width: 440px;
  }

  .BedsPicture_Itself img {
    width: 240px;
      height: auto;
  }

}


@media(min-width:700px) and (max-width:1200px){

  .BedsPictures_Container{
    width: 100%;
    max-width: 500px;
  }

  .BedsPicture_Itself img {
    width: 280px;
      height: auto;
  }

}





/*Collapsable*/
.Extra_Information_Container .Extra_Information_Description .Collable_Container{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.Extra_Information_Container .Extra_Information_Description .Collabsable button,
.AskPrice{
  cursor: pointer;
  margin: 4px;
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  padding: 4px;
  list-style: none;
  text-decoration: none;
  color: black;
    box-shadow: 2px 2px 3.5px rgb(109, 109, 109);
    border: 0.5px solid rgb(109,109,109);
    font-family: "Comfortaa",serif;
    font-weight: 400;
    font-size: 15.5px;
    margin-bottom: 5px;
    width:fit-content;
}

.Extra_Information_Container .Extra_Information_Description .Collabsable button:hover,
.AskPrice:hover{
  opacity: 0.5;
}


.Extra_Information_Container .Extra_Information_Description .Collabsable i,
.Extra_Information_Container .Extra_Information_Description .Collabsable button{
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

.Extra_Information_Container .Extra_Information_Description .Collabsable i{
  color: rgb(109, 109, 109);
  font-size: 18px;
}

/*Λίστα με Διαστάσεις*/
.Extra_Information_Container .Extra_Information_Description .Collabsable .Collapse_Info{
  margin-left: 3rem;
  margin-right: 5rem;
    display: none;
    vertical-align: middle;
    text-align:left;
    justify-content: center;
    align-items: center;
}

.Extra_Information_Container .Extra_Information_Description .Collapse_Info .Custom_Label{
    display: inline-block;
    position: relative;
      width:80px;
  }


.Extra_Information_Container .Extra_Information_Description .Collapse_Info .Custom_Label label{
  padding: 3px;
  box-shadow:0px 4px 4px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.3);
  background-color: grey;
  list-style: none;
  display: inline-block;
  font-family: "Comfortaa",serif;
  font-size: 16px;
  border-radius: 10px;
  margin: 4px;
}

.Extra_Information_Container .Extra_Information_Description .Collable_Container .Collabsable .Collapse_Info .Custom_Label input{
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index:2;
    cursor: pointer;
    opacity: 0;
  
}

.Extra_Information_Container .Extra_Information_Description .Collapse_Info .Custom_Label input[type="radio"]:hover + label{
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0); /* Example background change */
}

.Extra_Information_Container .Extra_Information_Description .Collapse_Info .Custom_Label input:checked + label {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Footer Styling */
.footer {
  background:transparent;
  padding: 50px 0;
  height: auto;
}

.footer img {
  width: 220px;
  height: auto;
}

.footer img:hover {
  opacity: 0.5;
}

.Footer_Container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.Every_Row {
  display: flex;
  flex-wrap: wrap;
}

.Every_Collum {
  width: 25%;
  padding:0 30px;
}

.Every_Collum h4 {
  color:black;
    font-size: 20px;
    font-family: "Comfortaa",serif;
    font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block; /* Make the h4 only take the space of its content */
}

.Every_Collum h4::before {
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  width: 100%;
  content: '';
  height: 2px;
  display: block;
  position: absolute;
  bottom: 0;
}

.Every_Collum ul li {
  list-style: none;
  margin-bottom: 10px;
}

.Every_Collum .underline li a {
  font-size: 17px;
  text-decoration: none;
  font-weight: 400;
  color: black;
    font-family: "Comfortaa",serif;
  position: relative;
  display: inline-block;
  line-height: 1.5rem;
}

.Every_Collum .underline li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background:rgb(109,109,109);
  display: block;
  transition: width 0.5s ease-in-out;
}

.Every_Collum  li a:hover::after {
  width: 100%;
}
.Every_Collum .text-indent li a{
  line-height: 1.5rem;
  align-items: center;
  justify-content: center;
    font-size: 17px;
    text-decoration: none;
    font-weight: 400;
    color:black;
      font-family: "Comfortaa",serif;
      transition: 0.3s ease-in-out;
      display: block;
}

.Every_Collum .text-indent a:hover{
  padding-left:1.25rem;
  color: rgb(109,109,109);
}

.text-indent i{
  align-items: center;
  vertical-align:middle;
  justify-content: center;
}

.Every_Collum .Footer_Socials a {
  font-size: 20px;
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border:2px solid black;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color:black;
  transition: all 0.5s ease;
}

.Every_Collum .Footer_Socials a:hover {
  color: rgb(109,109,109);
  border:2px solid grey;
}

@media(max-width: 1200px) {
  .Every_Collum {
    flex: 1 1 40%;
    margin-bottom: 30px;
  }
}

@media(max-width: 767px) {
  .footer img {
    width: 170px;
    height: auto;
  }

  .Every_Collum {
    flex: 1 1 50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px) {
  .footer img {
    width: 140px;
    height: auto;
  }

  .Every_Collum {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .Footer_Container {
    padding: 0 10px; 
  }
}

@media(max-width:350px){
  .Every_Collum .underline li a {
    font-size: 15px;
    line-height: 1.3rem;
  }
  
  .Every_Collum .text-indent li a{
    line-height: 1.3rem;
      font-size: 15px;

  }
  
  .Every_Collum .text-indent a:hover{
    padding-left:0.75rem;
  }

}


/*Our Company*/
.OurCompany{
  overflow-x:hidden;
  display: flex;
  flex-direction: column;
  gap:2rem;
  padding:6% 8%;
  align-items: flex-start;
}
.OurCompany .Information{
  width: 100%;
  padding-left: 10rem;
}

.OurCompany h1{
  font-size: 60px;
  font-weight: 800;
    font-family: "Comfortaa",serif;
    color: black;
  margin-bottom: 2rem;
  font-style: italic;
}

.OurCompany h2{
  padding-top:2rem;
    padding-bottom:2rem;
    font-size:40px;
    font-weight:600;
    font-style: italic;
    text-decoration: underline;
    font-family:"Comfortaa",serif;
    color:black;
}


.OurCompany .Information p{
  text-align:left;
    font-family: "Comfortaa";
    font-weight: 600;
    font-size: 22px;
  color:black;

  padding-bottom: 10px;
  line-height: 1.75rem;
}


.OurCompany img{
  align-self: center;
  text-align: center;
  justify-content: center;
  width:100%;
}

@media(max-width:450px){

  .OurCompany h1{
    font-size: 40px;
  }

  .OurCompany h2{
    font-size:30px;
  }
  
  
  .OurCompany .Information{
    width: 100%;
    padding-left: 1%;
  }  
}

/*Login Platform*/
.LogIn_PlatformContainer{
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80vh;
  background-color:transparent;
  display: flex;
}

.Login_FormBox{
  margin: 10px;
  border: 2px solid black;
  box-shadow:2px 4px 8px rgb(109,109,109);
  width: 750px;
  height: auto;

  display:flex;
  flex-direction: row;

  overflow: hidden;
  position: relative;
}

.Login_FormContent{
  flex-grow: 1;
  max-width:245px;
  height:auto;
  padding:10vh 2vh;
  z-index: 1;
}

.Login_FormBox .Login_FormContent h1{
  padding-bottom:22px; 
  text-align:center;
  font-family: "Comfortaa",serif;
  font-size: 26px;
  font-weight: 700;
}

.Login_Label_Itself{
  padding-bottom:1.5rem;
  position: relative;
}

.Login_Label_Itself input{
  color:black;
  background-color:transparent;

  width: 100%;
  height: auto;
  padding:4px;
  outline:none;
  border:none;
  border-bottom:2px solid black;

  padding-right: 20px;
    font-family: "Comfortaa",serif;
    font-size: 19px;
    font-weight: 600;
}

.Login_Label_Button input{
  border-radius:25px;
  background-color:rgb(109,109,109);
  color:black;
  width:100%;
  align-items:center;
  justify-content:center;
  text-align:center;
    height:30px;
    font-family: "Comfortaa",serif;
    font-size: 19px;
    font-weight: 600;
}

.Login_Label_Button input:hover{
  opacity: 0.5;
}


.Login_Label_Itself label{
  color: black;
  top: 0;
  left: 0;
  position: absolute;
  transition: 0.3s ease;
    font-family: "Comfortaa",serif;
    font-size: 15px;
    font-weight: 400;
}

.Login_Label_Itself input:focus ~ label,
.Login_Label_Itself input:not(:placeholder-shown) ~ label{
  color: rgb(109, 109, 109);
  top: -5px;
  transform: translateY(-50%);
}

.Login_Label_Itself input:not(:focus) ~ label{
  color:black;
}

.Login_Label_Itself input:focus,
.Login_Label_Itself input:not(:placeholder-shown){
  border-bottom:2px solid rgb(109, 109, 109);
}

.Login_Label_Itself input:not(:focus){
  border-bottom:2px solid black;
}

.Login_Label_Itself input:-webkit-autofill:hover,
.Login_Label_Itself input:-webkit-autofill:focus,
.Login_Label_Itself input:-webkit-autofill:valid{
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: black !important;
}

.Login_Label_Itself i{
  color: black;
  top: 0;
  right: 0;
  position: absolute;
  transition: 0.3s ease;
}

.Login_Label_Itself input:focus ~ i,
.Login_Label_Itself input:not(:placeholder-shown) ~ i{
  color:rgb(109, 109, 109);
}

.Login_Label_Itself input:not(:focus) ~ i{
  color:black;
}

.ShapeDescription{
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: right;
  padding: 40px 15px 0px 60px;
  z-index:1;
}

.ShapeDescription h1{
  font-size: 26px;
  font-family: "Comfortaa",serif;
  font-weight: 600;
}
.ShapeDescription p{
  font-family: "Comfortaa",serif;
  font-size: 18px;
  font-weight: 400;
}
.LogIn_PlatformContainer .ShapeItself{
  z-index: 0;
  position: absolute;
  right: 0;
  top: -5px;
  height: 600px;
  width: 850px;
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  transform: rotate(10deg) skewY(40deg);
  transform-origin: bottom right;
}

@media(max-width:600px){

.Login_FormBox{
  display:flex;
  flex-direction: column;
  
  text-align: left;
  justify-content: left;

  overflow: hidden;
  position: relative;
}

.ShapeDescription{
  padding:1.5vh;
  position: relative;
  top: 0;
  right: 0;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index:1;
}

.ShapeDescription h1{
  font-size: 26.5px;
}
.ShapeDescription p{
  font-size: 18px;
  font-weight: 400;
}
.LogIn_PlatformContainer .ShapeItself{
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg,rgb(119,123,127),rgb(127,138,143));
  transform-origin:bottom right;
}


}

