.black_div{
  background-color: #010734;
  color: azure;
  text-align: center;
  padding: 50px;
  font-size: 20px;
}
.grey{
  color: rgb(167, 161, 161);
  font-size: 32px;
  
}

body.no-scroll {
overflow: hidden;
}
.inneremail{
  color: white;
}   
body{
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;

color: #010734;

}
@media (max-width: 768px) {
  #formContainer {
    width: 95%; /* Adjust width for smaller screens */
    padding: 20px;
  }

  #message {
    height: 150px; /* Adjust height for smaller screens */
  }

  .submit_getquote {
    width: 100%; /* Full width on smaller screens */
    max-width: none; /* Remove maximum width */
  }
}
.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: transparent;
  color: #ecf0f1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /*position:relative;*/
}


#formContainer {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 15px;
  flex: 1;
  display: flex;
  flex-direction: column; /* Stack inputs vertically */
}

.overlay {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

input, textarea {
  border: 1px solid #ccc;
  width: 100%;
  height: 50px;
  background-color: #f5f5f5;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px; /* Rounded corners for inputs */
  margin-top: 5px; /* Add space above inputs */
}

textarea {
  height: 150px; /* Default height for textarea */
}

.blue {
  color: #102A71;
}

.submit_getquote {
  height: 50px;
  border: none;
  background-color: #fc6b17;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  color: white;
  border-radius: 5px; /* Rounded corners */
}

.submit_getquote:hover {
  background-color: #e55b0e; /* Darker shade on hover */
}

.flexROW {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between input groups */
}

.headingpopup {
  text-align: center;
  margin-bottom: 20px; /* Space below heading */
}

@media (max-width: 768px) {
  #formContainer {
      padding: 20px;
  }

  input, textarea {
      height: auto; /* Allow height to adjust */
  }

  .submit_getquote {
      width: 100%; /* Full width on smaller screens */
  }

  .flexROW {
      flex-direction: column; /* Stack inputs vertically */
  }

  .form-group {
      margin-bottom: 20px; /* Space between stacked inputs */
  }
  #message, #number, #name , #email{
    width: 330px !important;
  }
}

#contactForm #email {
  width: 160px;
  height: 50px;
  border:1px #bebebe solid;
  margin-top: 0.3em;
}
.menu-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-bar img {
  height: 80px;
  border-radius: 5px;
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  position: relative;
}

.menu-items li {
  display: flex;
  align-items: center;
}

.menu-items li a {
  text-decoration: none;
  font-size: 16px;
  padding: 5px 10px;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
  color: #102A71;
}

.menu-items li a:hover {
  background-color: #ecf0f1;
  color: #102A71;
}

.menu-items li a img {
  height: 40px;
  border-radius: 0;
}

.menu-button {
  background-color: #102A71;
  border: none;
  color: #ecf0f1;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: none;
}

.menu-button:hover {
  background-color: #102A71;
}

.openFormButton {
  background-color: #e74c3c;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.openFormButton:hover {
  background-color: #c0392b;
}

@media (max-width: 768px) {
  .menu-items {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%; /* Position the menu list slightly below the menu button */
      left: 0;
      background-color: white;
      padding: 15px;
      border-radius: 5px;
      border: 1px solid #FAFAFA;
      color: #102A71;
      z-index: 1000;
      width: 200px;
      max-height: 300px;
      overflow-y: auto;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transform: translateX(-100%); /* Initially hide the menu off-screen to the left */
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .menu-items.show {
      transform: translateX(0); /* Slide the menu into view */
      opacity: 1;
  }

  .menu-button {
      display: inline-block;
  }

  .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #102A71;
      transition: color 0.3s;

  }

  .close-button:hover {
      color: #e74c3c;
  }


  
}

/* Default styles (visible on small screens) */
.close-button {
position: absolute;
top: 10px;
right: 10px;
background-color: transparent;
border: none;
font-size: 24px;
cursor: pointer;
color: #102A71;
transition: color 0.3s;
}

.close-button:hover {
color: #e74c3c;
}

/* Styles for large screens */
@media (min-width: 769px) {
.close-button {
display: none;
}
}

.makeitpink{
color: #fc6b17;
}

.timestamp {
color: gray;
font-size: 0.9em;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
position: relative;
top: -1em;
margin-left: 1.2em;
}

.pinkline{
float: left;
margin-top: -16px;
margin-left: 7em;
margin-right: auto;
margin-bottom: 20px;
display: block; /* Ensures it's a block element */
height: 6px; /* Adjust thickness as needed */
width: 65px;
background-color: #fc6b17;
border: none;
}

.trendh12, .trendh1{
margin-left: 3.5em;


}


.pinkline2{
  float: left;
  margin-top: -16px;
  margin-left: 7em;
  margin-right: auto;

  height: 6px; /* Adjust thickness as needed */
  width: 65px;
  background-color: #fc6b17;
  border: none;
}


.insightspara{
margin-left: 6em;
font-size: 20px;
}

.WRAPPER {
display: flex;
flex-direction: column;
/*margin-left: 3.5em;*/
width: 100%;
}

.headings {
  display: flex;
  margin-top: 5em;
  margin-left: 7em;
  gap: 1em;
}

.heading {
  cursor: pointer;
  padding: 10px;
  margin: 5px;
  width: fit-content;

}
.container {
  padding: 20px;
  margin-left: 0.5em;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 boxes per row */

}
.articles-gridd {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 boxes per row */

}

.article-box:hover {
  transform: scale(1.02);
}

.article-image {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  padding: 15px;
}

.article-content h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
}

.article-content .author {
  margin: 0;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .articles-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 boxes per row on medium screens */
  }
}

@media (max-width: 800px) {
  .articles-grid {
      grid-template-columns: 1fr; /* 1 box per row on small screens */
      margin-left: -3em;
  }
  .trendh12 , .insightspara{
    margin-left: 1EM;

  }
  .pinkline2{
    margin-left: 2em;
  }
  .WRAPPER{
margin-left: -6em;
  }
  .trending{
    margin-left: -5EM;
  }

}


@media (max-width: 1024px) {
  .articles-gridd {
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
    margin-left: 1EM;
  }
}

/* Adjust for mobile screens */
@media (max-width: 600px) {
  .articles-gridd {
    grid-template-columns: 1fr; /* 1 box per row */
    margin-left: 0.3EM;
  }
    .WRAPPER{
margin-left: -7.5em;
  }
}

.content {
  
  max-height: 0;
  overflow: hidden;
  transition: width 5s ease-in-out, padding-left 5s ease-in-out, padding-right 5s ease-in-out;
  padding: 0 10px;
  width: 100%;
  margin-left: 4em;
  text-align: center;

} 
.copyright{
  position: relative;
  top: -22em;
  right: 2em;

}
.copyright_white_div{
  text-align: center;
}

.copyright_white{
  color: white;
font-size: 12px ;
padding-bottom: 2em;
padding-top: 1em;
}

.content.show {
  max-height: 200000px;
  padding-top: 10px;
  padding-bottom: 10px;
}


.grid-item {
  /* border: 1px solid #ccc; */
  display: flex;
  text-align: left;
  gap: 10px;
  padding: 10px;
  /* background-color: #e71616; */
  border-bottom: 3px solid #f7f4f5;
  width: 100%;
  margin-left: 6em;
}



.heading.active {
  color: #fc6b17;
}

.categories {
  background-color: #010734;
  color: white;

  padding-bottom: 5em; /* Add some padding to give more space */
}

.categories h2 {
  text-align: center;
  padding-top: 3em;
  color: white;
}

.imgimg{
height:150px ;
width: 280px;
border-radius: 10px;
}

.active {
color: rgb(14, 12, 12);
}




.Subscribe {
background-image: url('img/Subscribe_Banner.png');
background-size: cover; /* Adjust the background image size to cover the entire element */
background-position: center; /* Center the background image */
border-radius: 20px;
padding: 20px;
margin: 50px;
max-width: calc(100% - 100px); /* To account for both margins */
margin-left: auto;
margin-right: auto;
}
.Subscribe1, .Subscribe12 
{
color: #fff;
text-align: center;
}
input[type="email"] {
width: calc(30% - 20px); /* Adjusted for padding */
padding: 10px;
margin-top: 10px;
border-radius: 5px;
height: 25px;
border: none;
outline: none;
}
input[type="submit"] {
width: calc(10% - 20px); /* Adjusted for padding */
padding: 10px;
margin-top: 10px;
border-radius: 5px;
border: none;
outline: none;
background-color: #fc6b17;
color: #ffffff;
cursor: pointer;
}
.Subscribe1{
text-align: left;
color: #fc6b17;
}
.Subscribe12{
text-align: left;
}


.footer {
  font-size: 20px;
  margin-top: 5em;
  width: 100%;
  background-color: #010734;
  border-radius: 6px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-col {
  flex: 1;
}

.footer-col h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: #bfbfbf;
}

.footer-col .links li a:hover {
  color: #fff;
}

.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input::placeholder {
  color: #302f2f;
}

.divider {
  border: 1px solid rgb(43, 42, 42);
}

.footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
  background: #cecccc;
}

.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: #afb6c7;
}

.footer-col .icons i:hover {
  color: #fff;
}

.pink {
  height: 6px;
  width: 35px;
  background-color: #fc6b17;
  margin-top: 0.5em;
  border: none;
  position: relative;
  left: -3em;
}

.pinkk {
  height: 6px;
  width: 35px;
  background-color: #fc6b17;
  margin-top: 0.5em;
  border: none;
  position: relative;
  left: -8em;
}

.location img {
  height: 30px;
  width: 40px;
}

.linkedinimg {
  height: 72px;
  width: 72px;
  position: relative;
  right: 0.5em;
}

.logoimg {
  border-radius: 10px;
  height: 70px;
  width: 70px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .footer {
      align-items: center;
      position: relative;
      width: 100%;
      border-radius: 0;
      margin-top: 3em;
  }

  .footer-row {
      padding: 20px;
      gap: 1rem;
  }

  .footer-col {
      flex: 1 1 100%;
      margin-bottom: 20px;
  }

  .footer-col form {
      display: block;
  }

  .footer-col form :where(input, button) {
      width: 100%;
  }
  .trending{
    margin-left: -5EM;
  }

  .footer-col form button {
      margin: 10px 0 0 0;
  }

  .pink, .pinkk {
      height: 4px; /* Adjust thickness for smaller screens */
      width: 25px; /* Adjust width for smaller screens */
      position: static; /* Reset positioning */
      left: 0; /* Reset horizontal offset */
  }

  .linkedinimg, .logoimg {
      height: 50px;
      width: 50px;
  }

  .footer-col .location img {
      height: 25px; /* Adjust size for smaller screens */
      width: 35px;  /* Adjust size for smaller screens */
  }
}
.color_org{
  color: #fc6b17;
}
.article-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}

.leftslider{
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin-left: -5EM;
}

.article-box {
width: 370px;
margin: 10px;
border: 1px solid #ece9e9;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
background-color: #fff;
transition: transform 0.3s;
}
/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 1024px) {
  .Subscribe {
    padding: 15px;
    margin: 30px;
    max-width: calc(100% - 60px); /* Reduce margins */
  }

  input[type="email"] {
    width: calc(40% - 20px); /* Increase width */
    height: 30px;
    font-size: 14px;
  }

  input[type="submit"] {
    width: calc(20% - 20px); /* Increase width */
    font-size: 14px;
    padding: 10px;
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .Subscribe {
    padding: 10px;
    margin: 20px;
    max-width: calc(100% - 40px); /* Further reduce margins */
  }

  .Subscribe1, .Subscribe12 {
    text-align: center; /* Center-align text */
  }

  input[type="email"] {
    width: calc(80% - 20px); /* Full width with some padding */
    height: 35px;
    font-size: 16px;
    margin-top: 10px;
  }

  input[type="submit"] {
    width: calc(50% - 20px); /* Wider submit button */
    font-size: 16px;
    padding: 12px;
    margin-left: 0; /* Remove margin-left for better centering */
    margin-top: 10px;
  }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
  .Subscribe {
    padding: 10px;
    margin: 10px;
    max-width: calc(100% - 20px); /* Minimal margins */
  }

  input[type="email"], input[type="submit"] {
    width: calc(100% - 20px); /* Full width for both inputs */
    font-size: 14px;
    padding: 10px;
  }

  input[type="submit"] {
    margin-left: 0;
  }
}

.gapforall{
margin-top: -1em;
}

.article-box img {
width: 100%;
height:200px ;
}
.popup {
text-align:center;
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 95%;
max-width: 1000px;
max-height: 90%;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
background-color: white;
z-index: 1000;
border-radius: 10px;
overflow-y: auto;
}
.popup h2 {
margin-top: 0;
}
.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 999;
}
.close-button {
position: absolute;
top: 10px;
right: 10px;
background: transparent;
border: none;
font-size: 20px;
cursor: pointer;
}
#popupImage{
height: 400px !important;
width: 700px !important;
}

#popupContent {
max-height: 80vh; /* Set maximum height for the content */
overflow-y: auto; /* Enable vertical scrolling if content overflows */
}

.ROWCLASS{
display: flex;
margin-left: 1em;

}

.ROWCLASSs{
display: flex;

}

a {
text-decoration: none;
color: #010734;
}
.makeitpinkk{
margin-top: -1em;
margin-left: 0.5em;
margin-right: 0.5em;
}

.headingclass{
text-align: left;
}


.section {
transform: translateY(100px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.in-view {
opacity: 1;
transform: translateY(0);
}

.industry {
  display: inline-block; /* Allow the box to size according to text */
  padding: 0.2em 0.5em; /* Padding inside the box */
  border: none; /* Border color */
  border-radius: 4px; /* Rounded corners */
  background-color: #010734; /* Background color */
  color: white; /* Text color */
  position: relative;
  top: -3.3em;
  right: -10em; /* This value can be adjusted for smaller screens */
  margin-right: 0.5em;
}

@media (max-width: 600px) {
  .industry {
      padding: 0.4em 0.8em; /* Adjust padding for smaller screens */
      right: -5em; /* Adjust the right position for smaller screens */
  }
}



/* Close button */
.close {
color: #333;
font-size: 24px;
font-weight: bold;
cursor: pointer;
position: absolute; /* Absolute positioning */
top: 10px;
right: 10px;
}

.close:hover,
.close:focus {
color: #000;
text-decoration: none;
}

/* Form styling */
form {
display: flex;
flex-direction: column;
margin: 0; /* Remove default margin */
}

/* Grouping fields */
.form-group {
display: flex;
justify-content: space-between;
gap: 10px;
margin-top: 10px;
}

/* Fields styling */
.form-field {
flex: 1;
}
/* Form styling */
form {
  display: flex;
  flex-direction: column;
  margin: 0; /* Remove default margin */
}

/* Grouping fields */
.form-group {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

/* Fields styling */
.form-field {
  flex: 1;
  min-width: 150px; /* Ensure minimum width */
}

/* Label styling */
label {
  margin-top: 10px;
  font-weight: bold;
}

/* Input field styling */
input[type="text"],
input[type="tel"],
input[type="email"] {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%; /* Full width */
  box-sizing: border-box; /* Include padding in width */
}

/* Specific styling for email input field */
.email-input {
  border-color: #007bff;
}

/* Button styling */
button {
  margin-top: 15px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #fc6b17;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .form-group {
      flex-direction: column; /* Stack fields vertically */
  }

  .form-field {
      width: 100%; /* Full width on smaller screens */
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"] {
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ddd;
      border-radius: 4px;
      width: 100% !important; /* Full width */
      box-sizing: border-box; /* Include padding in width */
  }

}
label {
margin-top: 10px;
font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px; /* Full width */
    box-sizing: border-box; /* Include padding in width */
}
/* Styling for the email input field specifically */
.email-input {
border-color: #007bff;
}

button {
margin-top: 15px;
padding: 10px;
border: none;
border-radius: 4px;
background-color: #fc6b17;
color: #fff;
font-size: 16px;
cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

.access{
margin-top: -0.2em;
margin-bottom: 0.5em;
}
    .footerhr {
      border: 5px solid #fc6b17;
      width: 50px;
      border-radius: 10PX;
      margin-left: 0; /* Ensures it starts from the left */
    }

#name{
  width: 160px;
}
#number{
  width: 160px;
}
.closeFormButton {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 30px;
  cursor: pointer;
}

.closeFormButton:hover {
  color: #666;
}

/* Modal container styling */
#articleFormModal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
}

/* Inner modal content */
#articleFormModal .modal-content {
  width: 100%;
  position: relative;
}

/* Close button */
#articleFormModal .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
}

#articleFormModal .close:hover {
  color: #333;
}

/* Form heading */
#articleHeading,
#articleForm h4.access {
  text-align: center;
  margin-bottom: 20px;
  color: #102A71;
}

/* Form layout */
#articleForm {
  width: 100%;
}

/* Grouping rows */
#articleForm .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

/* Each input field */
#articleForm .form-field {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

/* Labels */
#articleForm label {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Inputs */
#articleForm input[type="text"],
#articleForm input[type="email"],
#articleForm input[type="tel"] {
  border: 1px solid #ccc;
  width: 100%;
  height: 50px;
  background-color: #f5f5f5;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
  margin-top: 5px;
}

/* Phone input special spacing */
#articleForm input#phoneNumber {
  margin-bottom: 20px;
  width: 100%;
}

/* Hidden inputs */
#articleForm input[type="hidden"] {
  display: none;
}

/* Submit button */
#articleForm button[type="submit"] {
  height: 50px;
  border: none;
  background-color: #fc6b17;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  width: 100%;
}

#articleForm button[type="submit"]:hover {
  background-color: #e55b0e;
}

/* Responsive design */
@media (max-width: 768px) {
  #articleFormModal {
    padding: 20px;
  }

  #articleForm .form-group {
    flex-direction: column;
  }

  #articleForm input[type="text"],
  #articleForm input[type="email"],
  #articleForm input[type="tel"] {
    height: auto;
    width: 100% !important;
  }

  #articleForm button[type="submit"] {
    width: 100%;
  }
}
