:root {
  --white: #ffffff;
  --bgColor: #e9f0f3;
  --portocaliu: #ff4e00;
  --black: #000000;
  --borderColor: #ededed;
  --blueLight: #3bb4b7;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,400&display=swap");
* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-size: 16px;
}

body {
  /*background-color: var(--bgColor);*/
  background: linear-gradient(
    to right,
    rgba(243, 251, 245, 50),
    rgb(245, 248, 243),
    rgba(250, 244, 245, 50)
  );
}

h1 {
  align-self: center;
  padding: 20px;
  color: var(--portocaliu);
  font-size: 40px;
}

a {
  color: var(--blueLight);
}

section {
  margin-bottom: 75px;
}

.iconsColor {
  color: var(--blueLight);
}

.imgCls {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /*width: 100%;*/
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  padding: 10px;
}

#container {
  margin: auto;
  width: 900px;
  padding: 0px;
  background-color: var(--white);
}

#logo {
  display: flex;
  justify-content: center;
}

#header img {
  float: right;
  shape-outside: url("../images/top.png");
  shape-image-threshold: 0.2;
  shape-margin: 10px;
}

#header {
  display: flex;
  /*flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;*/
  /*background-color: #334197;*/
  /* background: linear-gradient(
    to right,
    rgba(51, 65, 151, 0),
    rgb(51, 65, 151),
    rgba(51, 65, 151, 0)
  );*/
  color: var(--black);
  /*height: 350px;*/
}

#header p {
  align-self: center;
  padding: 20px;
  text-indent: 0px;
  font-size: 16px;
}

.colorOrangeStrong {
  color: var(--portocaliu);
  font-weight: 700;
}

.colorBlueStrong {
  color: var(--blueLight);
  font-weight: 700;
}

.btnCall {
  text-decoration: none;
  background-color: var(--portocaliu);
  color: var(--white);
  padding: 10px;
  border: 2px solid var(--black);
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
  align-items: center;
}

#caracteristici {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
}

#caracteristici .colsCar {
  width: 33vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  padding: 5px;
  margin: 5px;
}

#caracteristici .colsCar div {
  align-items: center;
}

#about {
  display: flex;
  flex-direction: column;
}

#about p {
  margin: 20px;
  text-indent: 20px;
  text-align: justify;
}

.subTitlu {
  font-size: 25px;
  color: var(--portocaliu);
  font-weight: 700;
  text-decoration: underline;
  margin: 15px;
}

#about img {
  float: left;
  shape-outside: url("../images/left.png");
  shape-image-threshold: 0.2;
  shape-margin: 10px;
}

#decenoi {
  /*display: flex;
  flex-direction: column;
  justify-content: space-around;*/
  display: grid;
  grid-template-columns: auto auto auto;
}

#decenoi div {
  padding: 10px;
  border: 1px solid var(--borderColor);
  border-radius: 10px;
  margin: 10px;
}

#cetransportam {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-around;
  align-content: space-around;
}

#contact {
  padding: 15px;
}

@media only screen and (max-width: 500px) {
  #container {
    margin: auto;
    width: 100vw;
  }

  section {
    margin-bottom: 15px;
  }

  .hideElement {
    display: none;
  }

  #decenoi {
    grid-template-columns: auto;
  }

  h1 {
    font-size: 20px;
  }

  .imgCls {
    width: 100%;
    border: 1px solid var(--borderColor);
  }
}

@media screen and (min-width: 501px) and (max-width: 700px) {
  .imgCls {
    width: 40%;
    border: 1px solid var(--borderColor);
  }
}

@media screen and (min-width: 701) and (max-width: 1000px) {
  #container {
    margin: auto;
    width: 100vw;
  }

  .hideElement {
    display: none;
  }
  h1 {
    font-size: 25px;
  }

  .imgCls {
    width: 40%;
    border: 1px solid var(--borderColor);
  }
}

@media screen and (min-width: 1001px) and (max-width: 2000px) {
  .imgCls {
    width: 80%;
    border: 1px solid var(--borderColor);
  }
}
