@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 1s;
  font-family: "DM Sans", sans-serif;
  transition: 1s;
  font-family: "Inter", sans-serif;
}

:root {
  --color1: #ffb120;
  --color2: #07332f;
  --white: white;
  --black: black;
}

h1 {
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
}

h2 {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
}

h3 {
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
}

h4 {
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
}

h5 {
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
}

h6 {
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
}

p {
  font-size: 16px;
}

body {
  overflow-x: hidden !important;
}

.content-1 span {
  font-family: "Cormorant Garamond", serif !important;
 }

.header {
  width: 100%;
  height: 60vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(..//img/contact-banner-img.avif) !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.contact-banner {
  width: 100%;
  height: 55vh;
  position: relative;
}
.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-topic {
  position: absolute;
  top: 45%;
  left: 45%;
}
.contact-topic h2 {
  color: white;
  font-size: 45px;
}

.address {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 90px;
  text-align: center;
  align-items: center;
}
.address-1 {
  width: 30%;
  height: 220px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.address-1 i {
  margin-bottom: 15px;
  font-size: 25px;
}
.address-1 h4 {
  font-weight: 700;
}
.para1 p {
  font-size: 12px !important;
}

.address-1:hover .tm-box-icon i {
  transform: rotateY(360deg);
}
.tm-box-icon {
  position: relative;
  height: 60px;
  width: 60px;
  transform: translate(0, -65%);
  display: block;
  margin: 0 auto;
  line-height: 60px;
  background-color: var(--color2);
}

.tm-box-icon:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 60px;
  border-width: 0 13px 12px 0;
  border-style: solid;
  border-color: var(--color2);
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  display: block;
  transition: all 0.4s;
  opacity: 0.7;
}

.tm-box-icon:after {
  position: absolute;
  content: "";
  right: 0;
  height: 11px;
  width: 100%;
  top: -11px;
  z-index: -4;
  transition: all 0.5s;
  background-color: var(--color2);
  transform: scale(1, 1.2);
}

.tm-box-icon i {
  color: var(--white);
}

.contact-form-1 {
  width: 60%;
  height: auto;
  margin-top: 50px;
  text-align: center;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  padding: 8px;
  margin-bottom: 50px;
}
.split input {
  width: 44%;
  padding: 6px;
  margin-bottom: 20px;
  background-color: rgb(245, 245, 245);
  border: none;
}
input {
  width: 90%;
  padding: 6px;
  margin-bottom: 30px !important;
  background-color: rgb(245, 245, 245);
  border: none;
}
textarea {
  width: 90%;
  padding: 6px;
  margin-bottom: 30px;
  background-color: rgb(245, 245, 245);
  border: none;
}

.submit-button {
  width: 150px;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  padding: 5px 0;
  color: white;
  background-color: var(--color2);
  /* border:.5px solid white; */
  z-index: 1;
  transition: color 0.5s;
  text-align: center;
  position: relative;
  margin-top: 10px;
  margin-right: 10px;
  border-radius: 0px;
  font-size: 18px;
}
.submit-button:hover {
  color: var(--white);
}

iframe {
  margin-bottom: 30px;
}

@media screen and (max-width: 320px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 22%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }

  .contact-form-1 {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 8px;
    margin-bottom: 20px;
  }
  .split input {
    width: 100%;
    padding: 6px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  input {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px !important;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    background-color: rgb(245, 245, 245);
    border: none;
  }

  .submit-button {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
    color: white;
    background-color: var(--color2);
    /* border:.5px solid white; */
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 0px;
    font-size: 18px;
  }
  .submit-button:hover {
    color: var(--white);
  }

  iframe {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 321px) and (max-width: 375px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 26%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }

  .contact-form-1 {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 10px;
    margin-bottom: 20px;
  }
  .split input {
    width: 100%;
    padding: 6px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  input {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px !important;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    background-color: rgb(245, 245, 245);
    border: none;
  }

  .submit-button {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
    color: white;
    background-color: var(--color2);
    /* border:.5px solid white; */
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 0px;
    font-size: 18px;
  }
  .submit-button:hover {
    color: var(--white);
  }

  iframe {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 376px) and (max-width: 425px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 28%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }

  .contact-form-1 {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 8px;
    margin-bottom: 20px;
  }
  .split input {
    width: 100%;
    padding: 6px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  input {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px !important;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    background-color: rgb(245, 245, 245);
    border: none;
  }

  .submit-button {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
    color: white;
    background-color: var(--color2);
    /* border:.5px solid white; */
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 0px;
    font-size: 18px;
  }
  .submit-button:hover {
    color: var(--white);
  }

  iframe {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 426px) and (max-width: 600px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 34%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }

  .contact-form-1 {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 8px;
    margin-bottom: 20px;
  }
  .split input {
    width: 100%;
    padding: 6px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  input {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px !important;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    background-color: rgb(245, 245, 245);
    border: none;
  }

  .submit-button {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
    color: white;
    background-color: var(--color2);
    /* border:.5px solid white; */
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 0px;
    font-size: 18px;
  }
  .submit-button:hover {
    color: var(--white);
  }

  iframe {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 40%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }

  .contact-form-1 {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 8px;
    margin-bottom: 20px;
  }
  .split input {
    width: 100%;
    padding: 6px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  input {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px !important;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    background-color: rgb(245, 245, 245);
    border: none;
  }

  .submit-button {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
    color: white;
    background-color: var(--color2);
    /* border:.5px solid white; */
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 0px;
    font-size: 18px;
  }
  .submit-button:hover {
    color: var(--white);
  }

  iframe {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 40%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }

  .contact-form-1 {
    width: 100%;
    height: auto;
    margin-top: 10px;
    text-align: center;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 8px;
    margin-bottom: 20px;
  }
  .split input {
    width: 100%;
    padding: 6px;
    margin-bottom: 20px;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  input {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px !important;
    background-color: rgb(245, 245, 245);
    border: none;
  }
  textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 30px;
    background-color: rgb(245, 245, 245);
    border: none;
  }

  .submit-button {
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 0;
    color: white;
    background-color: var(--color2);
    /* border:.5px solid white; */
    z-index: 1;
    transition: color 0.5s;
    text-align: center;
    position: relative;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 0px;
    font-size: 18px;
  }
  .submit-button:hover {
    color: var(--white);
  }

  iframe {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 901px) and (max-width: 992px) {
  .contact-banner {
    width: 100%;
    height: 55vh;
    position: relative;
  }
  .contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contact-topic {
    position: absolute;
    top: 45%;
    left: 40%;
  }
  .contact-topic h2 {
    color: white;
    font-size: 45px;
  }

  .address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 50px;
    text-align: center;
    align-items: center;
  }
  .address-1 {
    width: 100%;
    height: 220px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
  .address-1 i {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .address-1 h4 {
    font-weight: 700;
  }
  .para1 p {
    font-size: 12px !important;
  }

  .address-1:hover .tm-box-icon i {
    transform: rotateY(360deg);
  }
  .tm-box-icon {
    position: relative;
    height: 60px;
    width: 60px;
    transform: translate(0, -65%);
    display: block;
    margin: 0 auto;
    line-height: 60px;
    background-color: var(--color2);
  }

  .tm-box-icon:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    border-width: 0 13px 12px 0;
    border-style: solid;
    border-color: var(--color2);
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    display: block;
    transition: all 0.4s;
    opacity: 0.7;
  }

  .tm-box-icon:after {
    position: absolute;
    content: "";
    right: 0;
    height: 11px;
    width: 100%;
    top: -11px;
    z-index: -4;
    transition: all 0.5s;
    background-color: var(--color2);
    transform: scale(1, 1.2);
  }

  .tm-box-icon i {
    color: var(--white);
  }
}
