@import url("https://use.typekit.net/wby3aqm.css");

* {
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* hero container starts */
.hero_container {
    width: 100%;
    height: 100vh;
    background: url(./about_image/Hero_Image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding: 3.125rem 3.125rem;
}

.hero_container .navbar {
  /* border: 1px solid black; */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero_container .navbar .logo img{
  width: 23.125rem;
  height: 5.875rem;
}

.hero_container .navbar .navbar-links{
  display: flex;
  align-items: center;
  gap: 3.35rem;
}

.hero_container .navbar ul li a {
  font-family: itc-avant-garde-gothic-pro,sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #1E1E1E;
  position: relative;
}

.hero_container .navbar ul li a::after{
content: '';
width: 0;
height: 3px;
background: #004E89;
position: absolute;
left: 0;
bottom: -4px;
transition: 0.5s;
}

.hero_container .navbar ul li a:hover::after{
width: 40%;
}

.hero_container .navbar ul li a:hover {
color: #FF3F4A;
}

.hero_container .navbar ul li .active {
  color: #004E89;
}

/* Toggle-button */
.toggle-button{
  position: absolute;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1rem;
  margin: 15px 30px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
}

.hero_container .article {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 12rem 0rem;
}

.hero_container .article h1 {
    width: 60%;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 700;
    font-size: 3.25rem;
    line-height: 3.875rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
}

    /* hero container ends */



/* services container starts */
.services_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 3.125rem;
}

.services_container .contents{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services_container .contents  h1 {
  font-family: itc-avant-garde-gothic-pro,sans-serif;
  font-weight: 600;
  font-size: 2.375rem;
  line-height: 2.875rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #004E89;
}

.services_container .contents p {
  font-family: itc-avant-garde-gothic-pro,sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2rem;
  letter-spacing: 0.01em;
  color: #000000
}

.services_container .card_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.services_container .card_wrapper .card {
  width: 22em;
  height: 21.563em;
  background: #D9D9D9;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  cursor: pointer;
  transition: all .5s linear;
}

/* .services_container .card_wrapper .card:hover {
    transform: scale(0.9);
} */

.services_container .card_wrapper .card a {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-size: 0.875rem;
    width: 9.25em;
    height: 2.875em;
    background: #004E89;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.7s;
    transition-timing-function:cubic-bezier(0.5, 3, 0, 1);
}

.services_container .card_wrapper .card a:hover {
    transform: skewX(-15deg);
}

    /* services container ends */



/* image banner starts */
.banner_container {
    width: 100%;
    height: 22.063em;
    background: url(./about_image/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    /* imaage banner ends */



/* choose us container starts */
.chooseUs_container {
    /* border: 1px solid black; */
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 5rem 3.125rem;
}

.chooseUs_container .left_content {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2.35rem;
}

.chooseUs_container .left_content .para h2 {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 700;
    font-size: 2.375rem;
    line-height: 2.875rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #004E89;
}

.chooseUs_container .left_content .para {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chooseUs_container .left_content .para h3 span {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.8125rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000000;
}

.chooseUs_container .left_content .para h3 {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 2.375rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #000000;
}

.chooseUs_container .left_content .para p {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.5625rem;
    letter-spacing: 0.01em;
    color: #000000;
}

/* cards */
.chooseUs_container .cards {
    /* border: 1px solid black;  */
    position: relative;
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0rem;
    padding-top: 4rem;
}

.chooseUs_container .cards .card-1 {
    width: 29.375em;
    height: 19.625em;
    background: #f09e9e;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: url(./about_image/chooseUs_card1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.chooseUs_container .cards .card-2 {
    width: 28.563em;
    height: 21.438em;
    background: #D9D9D9;
    border-radius: 1.25rem;
    position: absolute;
    top: 25%;
    left: 33%;
    z-index: -1;
    background: url(./about_image/chooseUs_card2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    /* choose us container ends */



/* contactUs section starts */
.contact_container {
    /* border: 1px solid black; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    padding: 6rem 3.125rem;
} 
  
.contact_container h1 {
    width: 55%;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.375rem;
    line-height: 3rem;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #004E89;
}
  
.contact_container p {
    width: 75%;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 140%;
    text-align: center;
    letter-spacing: 0.01em;
    color: #1E1E1E;
}
  
.contact_container .form {
    /* border: 1px solid black; */
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
}
  
.contact_container .form input {
    width: 100%;
    outline: none;
    border: none;
    padding: 0.5rem 0rem;
    border-bottom: 2px solid black;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: 0.01em;
    color: #898484;
}
  
.contact_container .form input[type=submit] {
    border: none;
    outline: none;
    width: 11.25rem;
    height: 2.8125rem;
    background: #004E89;
    border-radius: 20px;
    align-self: center;
    margin-top: 1rem;
    cursor: pointer;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 157%;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    transition: all 0.5s;
}
  
.contact_container .form input[type=submit]:hover {
    transform: scale(1.1);
}
  
    /* contactUs section ends */



/* footer section starts */
.footer_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.852rem;
    background: #D9D9D9;
    padding: 3rem 3.125rem  1rem 3.125rem;
  }
  
  .footer_container nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer_container nav a img {
    width: 19.097em;
    height: 4.852em;
  }
  
  .footer_container nav ul {
    display: flex;
    align-items: center;
    gap: 4.625rem;
  }
  
  .footer_container nav ul li a {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.15rem;
    color: #1E1E1E;
  }
  
  .footer_container nav ul li a:hover {
    color: #FF3F4A;
  }
  
  .footer_container .articles {
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .footer_container .articles .left_content {
    /* border: 1px solid black; */
    width: 40%;
  }
  
  .footer_container .articles .left_content p {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 151%;
    letter-spacing: 0.01em;
    color: #1E1E1E;
  }
  
  .footer_container .articles .right_content {
    /* border: 1px solid black; */
    width: 35%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer_container .articles .right_content .col1 {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2.56rem;
  }
  
  .footer_container .articles .right_content .col1 .details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer_container .articles .right_content .col1 .details h3 {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #000000;
  }
  
  .footer_container .articles .right_content .col1 .details p {
    width: 90%;
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.625rem;
    letter-spacing: 0.01em;
    color: #1E1E1E;
  }
  
  .footer_container .articles .right_content .col2 {
    /* border: 1px solid black; */
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2.56rem;
  }
  
  .footer_container .articles .right_content .col2 .details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer_container .articles .right_content .col2 .details h3 {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #000000;
  }
  
  .footer_container .articles .right_content .col2 .details p {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    color: #1E1E1E;
  }
  
  
  .footer_container .line{
    border-bottom: 1px solid #1E1E1E;
    padding-top: 1rem;
  }
  
  .footer_container .copyright{
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
  }
  
  .footer_container .copyright p {
    font-family: itc-avant-garde-gothic-pro,sans-serif;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.01em;
    color: #1E1E1E;
  }