@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --black-color: #222222; 
  --red-color: #ED1C24;

}

body{
    font-family: "Jost", sans-serif;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}


/* Grid */

[class^="col-"],
[class*=" col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* Flexible column (auto width) */
.col {
  flex: 1 0 0%;
}

/* Fixed-width columns */
.col-1  { flex: 0 0 8.3333%; max-width: 8.3333%; }
.col-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
.col-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-5  { flex: 0 0 41.6667%; max-width: 41.6667%; }
.col-6  { flex: 0 0 50%; max-width: 50%; }
.col-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
.col-9  { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
.col-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Grid Responsive breakpoints*/
@media (min-width: 576px) {
  .col-sm-1  { flex: 0 0 8.3333%; max-width: 8.3333%; }
  .col-sm-2  { flex: 0 0 16.6667%; max-width: 16.6667%; }
  .col-sm-3  { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-sm-5  { flex: 0 0 41.6667%; max-width: 41.6667%; }
  .col-sm-6  { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-sm-8  { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .col-sm-9  { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-sm-11 { flex: 0 0 91.6667%; max-width: 91.6667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

/*Alignment Utilities (Flex Heelpers)*/
/* Horizontal alignment */
.justify-content-start   { justify-content: flex-start; }
.justify-content-center  { justify-content: center; }
.justify-content-end     { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around  { justify-content: space-around; }

/* Vertical alignment */
.align-items-start    { align-items: flex-start; }
.align-items-center   { align-items: center; }
.align-items-end      { align-items: flex-end; }


.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
}

.logo img {
  width: 270px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 50px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-header {
  fill: #fff;
  transition: fill 0.3s;
}

.contact-info a:hover .icon-header {
  fill: var(--red-color)
}

.menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-toggle:hover .icon-header {
  fill: #25D366;
}

/* Overlay styles (unchanged) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay.active {
  display: flex;
}

.overlay-content {
  text-align: center;
  position: relative;
}

.overlay-content nav a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 35px;
  margin: 20px 0;
  transition: color 0.3s;
  font-weight: 600;
  line-height: 28px;
}


.close-btn {
  position: absolute;
  top: 23px;
  right: 67px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 991px) {

.contact-info{
    display:none;
}
.logo img {
  width: 200px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
}
}