* {
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    /* background-color: #87bef5; */
    /* background-color: #161a1d; */
  }
  
  .navbar {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: #131921;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3vw;
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo img {
    width: 20vmax; /* Adjust the width as needed */
    height: auto; /* This will maintain the aspect ratio */
  }
  
  .navcontent {
    display: flex;
    gap: 1vw;
    font-size: 1.5vmax;
    font-weight: 700;
    color: #f3f3f3;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
  }
  .navcontent a {
    color: #f3f3f3;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    position: relative;
  }
  .navcontent a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: yellow;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  .navcontent a:hover:after {
    width: 100%;
    left: 0;
  }
  
  .menubar {
    display: none;
    /* font-size: 30px; */
    padding-right: 7vw;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-content: center;
    /* margin-top: 1vw; */
  }
  .banner {
    background-color: white;
    width: 100%;
    height: 40vmax;
    margin-top: 5vmax;
    background-image: url("images/productheader1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .banner p {
    text-align: center;
    color: #9ef01a;
    font-size: 20vw;
  }
  
  /** Footer **/
  footer {
    margin-top: 10%;
  }
  
  .foot-panel1 {
    background-color: #294261;
    color: #f3f3f3;
    height: 4vmax;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5vw;
  }
  .foot-panel1 a {
    color: #f3f3f3;
    text-decoration: none;
  }
  
  .foot-panel2 {
    background-color: #222f3d;
    display: flex;
    /* flex-direction: column; */
    color: #f3f3f3;
    /* flex-wrap: wrap; */
    padding: 1vmax;
    justify-content: space-between;
    padding-bottom: 1vmax;
    gap: 2vmax;
    
  }
  .nav-clock {
    display: flex;
    flex-direction: column;
    position: sticky;
    align-content: center;
    justify-content: center;
    padding-right: 5vmax;
  }
  
  .contact-email{
    /* margin-top: 2vmax; */
    margin-bottom: 2vmax;
    text-decoration: none;
  }
  .contact-email h3 {
    text-decoration: none;
    color: #000000;
  }
  /* clock */
  
  .card {
    width: 22vmax;
    height: 11vmax;
    background: #212121;
    border-radius: 1vmax;
    display: flex;
    color: white;
    justify-content: center;
    position: relative;
    flex-direction: column;
    align-items: center;
  }
  
  .time-text {
    font-size: 4vmax;
    margin-top: 0vmax;
    margin-left: 2vmax;
    font-weight: 600;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  .time-sub-text {
    font-size: 5vmax;
    margin-left: 2vmax;
  }
  
  .day-text {
    font-size: 1.5vmax;
    margin-top: 0px;
    margin-left: 2vmax;
    font-weight: 500;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
  .fa-sun,
  .moon {
    font-size: 1.5vmax;
    position: absolute;
    right: 1.5vmax;
    top: 1.5vmax;
    transition: all 0.3s ease-in-out;
  }
  
  .card:hover > .moon {
    font-size: 1.7vmax;
  }
  
  /* ..... */
  
  .foot-col {
    display: flex;
    flex-direction: column;
  }
  .gettoknow p {
    font-weight: 500;
    margin-top: 1vmax;
    font-size: 1.5vmax;
  }
  
  .gettoknow {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
  }
/*   
  .foot-heading {
    font-size: 2rem;
  } */
  
  .foot-panel3 {
    background-color: #222f3d;
    color: #f3f3f3;
    border-top: 0.5px solid white;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .foot-logo {
    background-image: url("/images/logo.png");
    background-size: cover;
    height: 55px;
    width: 300px;
    border-radius: 5px;
    padding: 2px;
  }
  
  .foot-panel4 {
    background-color: #0f1111;
    color: #f3f3f3;
    /* height: 5vmax; */
    font-size: 0.7rem;
    text-align: center;
    padding-bottom: 15px;
  }
  
  .pages {
    padding: 10px;
  }
  
  .copyright {
    padding-top: 2px;
  }
  
  .copyright a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .developer  {
    padding-top: 0.5vmax;
   
  }
  
  .developer a {
    color: #ffffff;
    text-decoration: none;
  }
  
  /* ........for mobile .......................................... */
  
  @media (max-width: 600px) {
    * {
      margin: 0;
      box-sizing: border-box;
    }
  
    body {
      /* background-color: #87bef5; */
      background-color: white;
    }
  
    .navbar {
      padding: 5vw;
      display: flex;
      justify-content: space-between;
      align-content: center;
    }
  
    .navcontent {
      display: none;
    }
    .menubar {
      display: block;
    }
  
    .logo {
      display: flex;
      justify-content: center;
      align-content: center;
      width: 45vw;
      height: 5vh;
      background-size: contain;
      background-repeat: no-repeat;
    }
  
    /* hamburger menu          */
    /* ................................................. */
  
    /* Add these styles to show/hide the navigation content */
    /* Adjusted styles for the navigation content */
    .icon-large {
      font-size: 24px; /* You can adjust this value */
      /* color: #ffffff; */
    }
    .navcontent {
      display: none;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent background */
      padding: 20px 0;
      transform: translateY(-100%);
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
    }
  
    /* Styling for the navigation items */
    .navcontent p {
      margin: 10px;
      font-size: 2.5vmax;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navcontent p:hover {
      color: #f4d03f; /* Change color on hover */
    }
  
    /* Styles for the active state of the navbar */
    .navbar.active .navcontent {
      transform: translateY(0);
    }
  
    /* Add this class to the navbar when hamburger is clicked */
    .navbar.active .line:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }
  
    .navbar.active .line:nth-child(2) {
      opacity: 0;
    }
  
    .navbar.active .line:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }
  
    /* Default state: content is hidden */
    .navbar .navcontent {
      display: none;
    }
  
    /* When active class is applied to navbar, show the content */
    .navbar.active .navcontent {
      display: flex;
    }
  
    /* ......................................... */
  
    .header {
      display: flex;
      justify-content: center;
      align-content: center;
    }
    .banner {
      /* background-color: aquamarine; */
      
    
      background-color: white;
      width: 100%;
      height: 40vmax;
      margin-top: 15vmax;
      background-image: url("images/productheader1.png");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }
     .banner p {
      display: flex;
      justify-content: center;
  
      text-align: center;
      color: #9ef01a;
      font-size: 20vw;
   
    }
    
  
    .contact-email{
      margin-top: 2vmax;
      margin-bottom: 2vmax;
      /* text-decoration: none; */
    }
   
    /** Footer **/
    footer {
      margin-top: 25%;
    }
  
    .foot-panel1 {
      background-color: #294261;
      color: #f3f3f3;
      height: 15vw;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 5vw;
    }
    .foot-panel1 a {
      color: #f3f3f3;
      text-decoration: none;
    }
  
    .foot-panel2 {
      background-color: #222f3d;
      display: flex;
  
      color: #f3f3f3;
      
      padding: 2vmax;
      padding-right: 5vmax;
  
      padding-bottom: 5vw;
    }
  
    .gettoknow p {
      font-weight: 500;
      margin-top: 10px;
      font-size: 1.7vmax;
    }
  
    .gettoknow {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
    }
  
    .foot-heading {
      font-size: 2rem;
    }
  
    .foot-panel3 {
      background-color: #222f3d;
      color: #f3f3f3;
      border-top: 0.5px solid white;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .foot-logo {
      background-image: url("/images/logo.png");
      background-size: cover;
      height: 55px;
      width: 300px;
      border-radius: 5px;
      padding: 2px;
    }
  
    .foot-panel4 {
      background-color: #0f1111;
      color: #f3f3f3;
      height: 75px;
      font-size: 0.7rem;
      text-align: center;
    }
  
    .pages {
      padding: 10px;
    }
  
    .copyright a {
      color: #ffffff;
      text-decoration: none;
    }
  
    .nav-clock {
      display: none;
    }
  }
  
  .contact_us_6 * {
    font-family: Nunito, sans-serif;
  }
  
  .contact_us_6 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .contact_us_6 .responsive-cell-block {
    min-height: 75px;
  }
  
  .contact_us_6 input:focus,
  .contact_us_6 textarea:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
  }
  
  .contact_us_6 .container-block {
    min-height: 75px;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
  }
  
  .contact_us_6 .responsive-container-block {
    min-height: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .contact_us_6 .responsive-container-block.big-container {
    padding-top: 10px;
    padding-right: 30px;
    width: 35%;
    padding-bottom: 10px;
    padding-left: 30px;
    background-color: #03a9f4;
    position: absolute;
    height: 950px;
    right: 0px;
  }
  
  .contact_us_6 .responsive-container-block.container {
    position: relative;
    min-height: 75px;
    flex-direction: row;
    z-index: 2;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding-top: 0px;
    padding-right: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
    max-width: 1320px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }
  
  .contact_us_6 .container-block.form-wrapper {
    background-color: white;
    max-width: 450px;
    text-align: center;
    padding-top: 50px;
    padding-right: 40px;
    padding-bottom: 50px;
    padding-left: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    margin-top: 90px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }
  
  .contact_us_6 .text-blk.contactus-head {
    font-size: 36px;
    line-height: 52px;
    font-weight: 900;
  }
  
  .contact_us_6 .text-blk.contactus-subhead {
    color: #9c9c9c;
    width: 300px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    display: none;
  }
  
  .contact_us_6 .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 26px;
    margin-left: 0px;
    min-height: 50px;
  }
  
  .contact_us_6 .input {
    width: 100%;
    height: 50px;
    padding-top: 1px;
    padding-right: 15px;
    padding-bottom: 1px;
    padding-left: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #eeeeee;
    border-right-color: #eeeeee;
    border-bottom-color: #eeeeee;
    border-left-color: #eeeeee;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    font-size: 16px;
    color: black;
  }
  
  .contact_us_6 .textinput {
    width: 98%;
    min-height: 150px;
    padding-top: 20px;
    padding-right: 15px;
    padding-bottom: 20px;
    padding-left: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #eeeeee;
    border-right-color: #eeeeee;
    border-bottom-color: #eeeeee;
    border-left-color: #eeeeee;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    font-size: 16px;
  }
  
  .contact_us_6 .submit-btn {
    width: 98%;
    background-color: #03a9f4;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: outset;
    border-right-style: outset;
    border-bottom-style: outset;
    border-left-style: outset;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  
  .contact_us_6 .form-box {
    z-index: 2;
    margin-top: 0px;
    margin-right: 48px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .contact_us_6 .text-blk.input-title {
    text-align: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    color: #9c9c9c;
  }
  
  .contact_us_6 ::placeholder {
    color: #dadada;
  }
  
  .contact_us_6 .mob-text {
    display: block;
    text-align: left;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
  
  .contact_us_6 .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  
  .contact_us_6 .text-blk.contactus-subhead.color {
    color: white;
  }
  
  .contact_us_6 .map-box {
    max-width: 800px;
    max-height: 520px;
    width: 100%;
    height: 520px;
    background-color: #d9d9d9;
    background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/sc23.png");
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 50%;
  }
  
  .contact_us_6 .map-part {
    width: 100%;
    height: 100%;
  }
  
  .contact_us_6 .text-blk.map-contactus-head {
    font-weight: 900;
    font-size: 22px;
    line-height: 32px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    color: #03a9f4;
  }
  
  .contact_us_6 .text-blk.map-contactus-subhead {
    max-width: 300px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    
  }
  
  .contact_us_6 .social-media-links.mob {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    width: 230px;
    display: flex;
    justify-content: flex-start;
  }
  
  .contact_us_6 .link-img {
    width: 30px;
    height: 30px;
    margin-top: 0px;
    margin-right: 25px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .contact_us_6 .link-img.image-block {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .contact_us_6 .social-icon-link {
    margin: 0 25px 0 0;
    padding: 0 0 0 0;
  }
  
  @media (max-width: 1024px) {
    .contact_us_6 .responsive-container-block.container {
      justify-content: center;
    }
  
    .contact_us_6 .map-box {
      position: absolute;
      top: 0px;
      max-height: 320px;
    }
  
    .contact_us_6 .map-box {
      max-width: 100%;
      width: 100%;
    }
  
    .contact_us_6 .responsive-container-block.container {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .contact_us_6 .map-part {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .contact_us_6 .container-block.form-wrapper {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .mob-text {
      display: block;
    }
  
    .contact_us_6 .form-box {
      margin-top: 200px;
      margin-right: 60px;
      margin-bottom: 40px;
      margin-left: 0px;
    }
  
    .contact_us_6 .link-img {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      display: flex;
      justify-content: space-evenly;
    }
  
    .contact_us_6 .social-media-links.mob {
      justify-content: space-evenly;
    }
  
    .contact_us_6 .responsive-cell-block.wk-desk-7.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
      text-align: center;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-direction: row;
    }
  
    .contact_us_6 .text-blk.contactus-subhead {
      display: block;
    }
  
    .contact_us_6 .mob-text {
      text-align: center;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .responsive-container-block.container {
      flex-wrap: wrap;
    }
  
    .contact_us_6 .form-box {
      margin-top: 200px;
      margin-right: 0px;
      margin-bottom: 40px;
      margin-left: 0px;
    }
     
  .contact-address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  }
  
  @media (max-width: 900px) {
    
  .contact-address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
    .contact_us_6 .submit-btn {
      width: 100%;
    }
  
    .contact_us_6 .input {
      width: 100%;
    }
  
    .contact_us_6 .textinput {
      width: 100%;
    }
  
    .contact_us_6 .container-block.form-wrapper {
      margin-top: 40px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .text-blk.input-title {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .contact_us_6 .form-box {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 0px;
      padding-left: 20px;
    }
  
    .contact_us_6 .container-block.form-wrapper {
      padding-top: 50px;
      padding-right: 15px;
      padding-bottom: 50px;
      padding-left: 15px;
    }
  
    .contact_us_6 .mob-text {
      display: block;
    }
  
    .contact_us_6 .responsive-container-block.container {
      padding-top: 50px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .contact_us_6 .form-box {
      margin-top: 200px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .container-block.form-wrapper {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .form-box {
      margin-top: 220px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .form-box {
      margin-top: 2vmax;
      margin-right: 0px;
      margin-bottom: 50px;
      margin-left: 0px;
    }
  
    .contact_us_6 .text-blk.contactus-head {
      font-size: 32px;
      line-height: 40px;
    }
  }
  
  @media (max-width: 500px) {
    .contact_us_6 .container-block.form-wrapper {
      padding-top: 50px;
      padding-right: 15px;
      padding-bottom: 50px;
      padding-left: 15px;
    }

    /* .contact-address {
      display: flex;
      flex-direction: column;
    } */
  
    .contact_us_6 .container-block.form-wrapper {
      margin-top: 60px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_6 .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 15px;
      margin-left: 0px;
    }
  
    .contact_us_6 .responsive-container-block {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 35px;
      margin-left: 0px;
    }
  
    .contact_us_6 .text-blk.input-title {
      font-size: 12px;
    }
  
    .contact_us_6 .text-blk.contactus-head {
      font-size: 26px;
      line-height: 35px;
    }
  
    .contact_us_6 .input {
      height: 45px;
    }
  }

  .contact-address{
    display:flex;
    /* gap: 7vmax; */
    justify-content: space-between
  }


  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 650px) {
  
  .contact-address {
    display: flex;
    flex-direction: column;
  }
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}


/* Default styles for the iframe container */
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  width: 55vmax;
  height: 45vmax;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Apply different styles for smaller screens */
@media (max-width: 600px) {
  .map-container {
    width: 50vmax;
    height: 50vmax;
  }
}