:root {
  --accent: #030095;
  --init: hsla(241, 100%, 29%, 0.657);
  --fin: hsla(0, 0%, 0%, 0.575);
}
.pg2-container {
  height: max-content;
  width: 100vw;
  background: linear-gradient(135deg, rgba(86, 86, 177, 0.521), white);
}
.pg2 {
  width: 100vw;
  height: 40%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 40px;
}

.hr {
  width: 150px;
  height: 2px;
  background-color: rgb(77, 77, 209);
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.cityTitle {
  color: black;
  text-align: center;
  padding-top: 50px;
  font-weight: 200px;
  font-size: 35px;
}
.Cities p {
  color: black;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  padding-top: 15px;
}
.Cities img {
  height: 200px;
  width: 200px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.685);
  transition: all 0.5s ease-in;
}
.Cities img:hover {
  margin-bottom: 10px;
  box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.788);
}
.left {
  width: 30vw;
  height: 70vh;
  background: linear-gradient(135deg, var(--fin), var(--init));
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.63);
  border: 1px solid white;
}
.left h2 {
  font-size: 25px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid white;
  padding: 5px;
}
.left h3 {
  padding: 10px;
  width: 100%;
  transition: 0.5s ease-in;
}
.left h3 > a {
  text-decoration: none;
  transition: 0.5s ease-in;
}
.left h3:hover {
  background-color: rgba(57, 57, 189, 0.842);
}
.left a:hover {
  color: rgb(255, 187, 0);
  padding-left: 20px;
}

.right {
  width: 60vw;
  height: 70vh;
  background: linear-gradient(135deg, var(--fin), var(--init));
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.63);
  border: 1px solid white;
}
.right h2 {
  text-align: center;
  padding: 8px;
  width: 100%;
  border-bottom: 1px solid white;
}
/*CONTACT STARTS*/

    .contact-card {
        border: 1px solid #e2e2e2;
        border-radius: 6px;
        padding: 25px;
        height: 100%;
        background: #fff;
    }
    .contact-card h4 {
        font-weight: 700;
        color: #14213d;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .contact-card .list-icons li {
        margin-bottom: 18px;
    }
    .contact-card .list-icons li:last-child {
        margin-bottom: 0;
    }
    .contact-card .list-icons li i {
        color: #cc3300;
        margin-right: 8px;
    }
    .contact-card .label-line {
        display: block;
        font-size: 11px;
        letter-spacing: 0.5px;
        font-weight: 700;
        color: #cc3300;
        text-transform: uppercase;
        margin-bottom: 2px;
    }
    .contact-card .value-line {
        display: block;
        color: #555;
        margin-left: 24px;
    }
    .contact-card .value-line a {
        color: #555;
        text-decoration: none;
    }
    .contact-card .value-line a:hover {
        color: #cc3300;
    }
/*CONTACT ENDS*/