@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

:root {
  --primary-theme: #001d3d;
  --primary-clr: #3d52a0;
  --secondary-clr: #7091e6;
  --white-clr: #fff;
  --gray-clr: #8697c4;
  --light-gray-clr: #adbbda;
  --light-white-clr: #ede8f5;
  --dark-clr: #00173c;
  --black-clr: #000000;
  --yellow-clr: #f8a501;
  --orange-clr: #ff7c69;
}

.how_we_different {
    background-color: var(--dark-clr);
    padding: 100px 0;
}

.how_we_different_card {
    /* border: 1px solid white; */
    height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.how_we_different_card i {
    color: var(--dark-clr);
    font-size: 24px;
    background: var(--light-white-clr);
    padding: 10px;
    border-radius: 50%;
}
.how_we_different_card h5 {
    font-weight: 600;
    color: var(--white-clr);
    margin-top: 30px;
    margin-bottom: 10px;
}
.how_we_different_card p {
    font-weight: 500;
    color: var(--light-white-clr);
}

.hwdc_1 {
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}
.hwdc_2 {
    border-right: 1px solid white;
}
.hwdc_3 {
    border-bottom: 1px solid white;
}