* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.contact_hero_description {
  font-size: 1.3rem;
  color: white;
}

@media screen and (max-width: 576px) {
  .hero_left_container {
    padding-bottom: 4rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .hero_left_container {
    padding-bottom: 4rem;
  }
  .menu_icon {
    display: block;
    font-size: 1.3rem;
    cursor: pointer;
  }
  .menu_container {
    width: 100%;
    height: 100vh;
    background: #3c54cc;
    background: linear-gradient(225deg, #3c54cc, #0c0422);
    position: fixed;
    right: -100%;
    top: 0%;
    z-index: 1;
    visibility: visible;
    transition-duration: 2s;
    transition-timing-function: ease-in-out;
  }
  .close {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    position: absolute;
    left: 10px;
  }
  .menu_link {
    text-decoration: none;
    padding-left: 2rem;
    padding-top: 2.5rem;
    display: block;
    text-align: left;
    color: white;
  }
  .menu_link_container {
    padding-top: 2rem;
  }
  .smenu {
    right: 0%;
  }
  .direct_msg_us {
    display: none;
  }
}

.nav_list {
  padding: 1.5rem;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}

.nav_list:hover {
  color: #30067e;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}

@media screen and (max-width: 576px) {
  .nav_list {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .nav_list {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .nav_list {
    display: none;
  }
}

/* hero container contact us page section start here */
@media (min-width: 768px) and (max-width: 992px) {
  .hero_container {
    height: 80vh;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .hero_container {
    height: 55vh;
  }
}
@media (min-width: 1200px) {
  .hero_left_container {
    width: 80%;
  }
}
/* hero container contact us page section end here */

/* Privacy policy page css code start here  */
.privacy_policy_container {
  width: 100%;
  height: auto;
  transition-duration: 2s;
  transition-timing-function: linear;
  background-image: url("/images/law.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(80%);
  border-top: 1px solid rgb(161, 135, 247);
}
.privacy_policy_page_content {
  width: 80%;
  height: auto;
  margin: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.actual_privacy_policy {
  width: 90%;
  height: 100vh;
  margin: auto;
  padding: 1rem;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.policy_title {
  font-size: 2rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}
.policy_content {
  color: rgb(15, 5, 49);
  font-weight: 600;
  padding: 0 3rem;
}

@media screen and (max-width: 576px) {
  .privacy_policy_container {
    transition-duration: 2s;
    transition-timing-function: linear;
    background-image: url("/images/law.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    filter: brightness(80%);
  }
  .privacy_policy_page_content {
    width: 100%;
  }
  .policy_title {
    font-size: 1.5rem;
    color: white;
  }
  .policy_content {
    padding: 0 1rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .privacy_policy_container {
    transition-duration: 3s;
    transition-timing-function: ease-in;
    background-image: url("/images/law.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    filter: brightness(80%);
  }
  .privacy_policy_page_content {
    width: 100%;
  }
  .policy_title {
    font-size: 1.5rem;
    color: white;
  }
  .policy_content {
    padding: 0 1rem;
    font-size: 0.8rem;
  }
}

/* Privacy policy page css code end here  */

/* Enquery grid section start here */
.enquery_container {
  width: 100%;
  height: auto;
}
.enquery_content {
  width: 80%;
  height: auto;
  margin: auto;
  padding-top: 5rem;
}
.enquery_title {
  font-size: 3rem;
  color: rgb(53, 65, 202);
}
.enquery_grid_section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2rem;
  column-gap: 1rem;
  row-gap: 1rem;
}

.grid_contentt {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  align-items: center;
  background: #3383e3;
  background: linear-gradient(135deg, #3383e3, #c4c2dd);
  gap: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  transition-duration: 1s;
  transition-timing-function: linear;
}
.grid_contentt:hover {
  transform: rotateX(360deg);
  transform: rotateY(360deg);
  transition-duration: 1s;
  transition-timing-function: linear;
}
.grid_content_heading {
  color: rgb(16, 16, 135);
}
.grid_content_heading:hover {
  color: white;
}
.down_arror_image {
  margin-top: 1rem;
  height: 2rem;
}

.know_more_image {
  width: 3rem;
  height: 3rem;
}
.know_more_button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
}
.know_more_image {
  width: 1.5rem;
  height: 1.5rem;
}
.contact_know_more_buton {
  text-decoration: none;
  color: black;
}
.contact_know_more_buton:hover {
  color: blue;
  text-decoration: underline;
}

@media screen and (max-width: 576px) {
  .enquery_grid_section {
    grid-template-columns: repeat(1, 1fr);
  }
  .enquery_title {
    font-size: 2.2rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .enquery_grid_section {
    grid-template-columns: repeat(2, 1fr);
  }
  #firsten {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-column-start: 1;
    grid-column-end: 4;
  }
  #fourthen {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
/* Enquery grid section start here */

/* kolkata office section start here  */
.kolkata_office_container {
  width: 100%;
  height: auto;
}
.kolkata_office_content {
  width: 80%;
  height: auto;
  margin: auto;
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.address_left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kolkata_office_map_icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid skyblue;
  padding: 0.3rem;
  background-color: white;
}
.kolkata_address {
  color: #30067e;
}
.kolkata_office_name {
  font-weight: bold;
}
.kolkata_office_address_map {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.redirect_address_link {
  font-size: 1.3rem;
  color: rgb(83, 82, 82);
  font-weight: bold;
}
.redirect_address_link:hover {
  color: blue;
  text-decoration: underline;
}

.address_right {
  height: 100%;
}
.iframe_container {
  width: 100%;
  margin: auto;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  overflow: hidden;
  object-fit: cover;
}
.iframe_content {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 576px) {
  .kolkata_office_content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1rem;
  }
  .address_left {
    background-color: whitesmoke;
    padding: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .kolkata_office_content {
    display: grid;
    column-gap: 1rem;
  }
  .address_left {
    border-bottom: 1px solid white;
  }
}

/* kolkata office section end here  */

/* our offices section start here */

.our_office_container {
  width: 100%;
  height: auto;
}
.our_office_content {
  width: 80%;
  margin: 0 auto;
  padding-top: 4.5rem;
}
.registered_office {
  color: #0a208f;
}

.our_office_grid_container {
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
}
.our_office_grid_content {
  display: flex;
  flex-direction: column;

  gap: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 0.9rem;
  background-color: rgb(243, 239, 239);
}
.office_country {
  color: #0a208f;
  font-weight: bold;
}
.office_name {
  font-weight: bold;
}
.our_office_location_container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.office_address_link {
  font-weight: bold;
  font-size: 1.3rem;
  color: rgb(57, 56, 56);
}
.office_address_link:hover {
  text-decoration: underline;
  color: blue;
}

.location_icon {
  width: 2.5rem;
  height: 2.5rem;
}

@media screen and (max-width: 576px) {
  .our_office_grid_container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .our_office_grid_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }
  #cover_grid {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .our_office_grid_container {
    row-gap: 1rem;
  }
  #cover_grid {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #covergridthree {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}

/* our offices section end here */

/* Contact Us form section start here */

.contact_us_form_container {
  width: 100%;
  height: auto;
}
.contact_heading {
  text-align: center;
  color: rgb(50, 13, 124);
}
.contact_us_form_content {
  width: 80%;
  margin: auto;
  padding-top: 6rem;
}

.actual_contact_form {
  width: 55%;
  margin: auto;
  background-color: #f6f6f6;
  padding: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  border-radius: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.input_shape {
  height: 2rem;
  padding: 0.3rem;
}
.usermsg {
  padding: 0.3rem;
}
.input_shape:focus {
  color: rgb(74, 96, 204);
  background-color: #eaf0f7;
  outline: 2px solid rgb(185, 185, 221);
  border: none;
  box-shadow: 0 0 10px 2px rgba(0, 123, 255, 0.75);
}
.input_heading {
  color: rgb(15, 15, 114);
  font-weight: bold;
}
.submit_button {
  height: 2rem;
  background-color: #30067e;
  border: none;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.submit_button:focus {
  border: 1px solid #3c54cc;
  background-color: blue;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .contact_us_form_content {
    width: 100%;
  }
  .actual_contact_form {
    width: 80%;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .contact_us_form_content {
    width: 80%;
  }
  .actual_contact_form {
    width: 80%;
  }
}

/* Contact Us form section end here */
