/* Start Variables */
:root{
    --main-color:#2196f3;
    --main-color-alt:#1787e0;
    --section-color:#ececec;
}
/* End Variables */
/* Start Gloable  */
/* Dropdown Button (default style) */
.dropdown .dropbtn {
    background-color: transparent; /* No background color by default */
    color: white; /* Text color */
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  
  /* Dropdown Content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color on hover */
  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Show the dropdown when hovering */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Dropdown button hover effect */
  .dropdown:hover .dropbtn {
    background-color: #333; /* Color when hovered */
    color: white;
  }
  
  /* Dropdown button active effect when clicked */
  .dropdown:active .dropbtn {
    background-color: #555; /* Darker color on click */
  }
  

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: "Cairo", sans-serif;
    margin-top: 72px;
}
html{
    scroll-behavior: smooth;
}
ul{
    list-style: none;
    margin:0;
    padding: 0;
}
a{
    text-decoration: none;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* Small */
@media (min-width: 768px){
    .container{
        width: 750px;
    }
} 
/* Medium */
@media (min-width: 992px){
    .container{
        width: 970px;
    }
}
/* Large */
@media (min-width: 1200px){
    .container{
        width: 1170px;
    }
}
.main-title{
    position: relative;
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 30px;
    width: fit-content;
    z-index: 1;
    transition: 0.3s;
    text-transform: uppercase;
}
.main-title::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.main-title::after{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    border-radius: 50%;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.spikes{
    position: relative;
}
.spikes::after{
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    height: 30px;
    /* background-color: rebeccapurple; */
    z-index: 1;
    background-image: linear-gradient(135deg,  white 25%, transparent 25%),
    linear-gradient(222deg,  white 25%, transparent 25%);
    background-size: 30px 30px;
}

/* End Gloable  */

/* Start header */
.header {
  background-color: #fff;
  box-shadow: 0 0 10px #ddd;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.header .logo{
    color: var(--main-color);
    font-size: 26px;
    font-weight: bold;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .login-btn {
  padding: 8px 22px;
  background: #009688;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  border: none;
  outline: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.header .login-btn:hover {
  background: #00796b;
  color: #fff;
}

@media (max-width: 991px) {
  .header .container {
    flex-direction: column;
    height: auto;
    align-items: stretch;
  }
  .navbar-center, .header .main-nav {
    justify-content: center;
    width: 100%;
  }
  .header .login-btn {
    margin: 10px auto 0;
    align-self: flex-end;
  }
}

@media (max-width: 767px){
    .header .logo{
        width: 100%;
        /* height: 50%; */
    }
} 
.header .main-nav{
      flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px){
    .header .main-nav{
        margin: auto;
    }
} 
.header .mega-menu {
  pointer-events: none;
  transition: top 0.3s, opacity 0.3s;
}
.header .mega-menu.show {
  pointer-events: auto;
  opacity: 1 !important;
  z-index: 100 !important;
  top: calc(100% + 1px) !important;
}
.header .main-nav > li > a{
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;   
    position: relative;
    color: #000;
    padding: 0 30px;
    overflow: hidden;
    transition: 0.3s;
}
@media (max-width: 767px){
    .header .main-nav > li > a{
        padding: 10px;
        font-size: 14px;
        height: 40px;
    }
} 
.header .main-nav > li > a::before{
   content: "";
   position: absolute;
   width: 100%;
   height: 4px;
   background-color: var(--main-color);
   top: 0;
   left: -100%;
   transition: 0.3s;
}
.header .main-nav > li > a:hover{
    background-color: #fafafa;
    color: var(--main-color);
}
.header .main-nav > li > a:hover::before{
    left: 0;
}
.header .mega-menu{
    position: absolute;
    width: 100%;
    left: 0;
    padding: 30px;
    background-color: #fff;
    border-bottom: 3px solid var(--main-color);
    z-index: -1;
    display: flex;
    gap: 40px;
    top: calc(100% + 50%);
    opacity: 0;
    transition: top 0.3s, opacity 0.3s;
}
@media (max-width: 767px){
    .header .mega-menu{
        flex-direction: column;
        gap: 0;
        padding: 5px;
    }
    .header .mega-menu .links li{
        border-bottom: 1px solid #e9e6e6;
    }
} 
.header .mega-menu .image img{ 
    max-width: 100%;
    width: 500px;
}
@media (max-width: 991px){
    .header .mega-menu .image img{
        display: none;
    }
} 
.header .mega-menu .links{
    min-width: 250px;
    flex: 1;
} 
.header .mega-menu .links li{
    position: relative;
}
.header .mega-menu .links li:not(:last-child){
    border-bottom: 1px solid #e9e6e6;
}
.header .mega-menu .links li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fafafa;
    z-index: -1;
    transition: 0.3s;
}
.header .mega-menu .links li:hover:before{
    width: 100%;
}
.header .mega-menu .links li a{
    color: var(--main-color);
    padding: 15px;
    display: block;
    font-size: 18px;
    font-weight: bold;
}
.header .mega-menu .links li i{
    margin-right: 10px;
}
/* End header */

/* Start Landing */
.landing{
    position: relative;
}
.landing::before{
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    width: 100%;
    height: 100%;
    background-color: #ececec;
    z-index: -1;
}
.landing .container .slider{
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    transition: 1s;
}
.landing .container .slider .list{
    position: absolute;
    left: 0;
    display: flex;
    height: 100%;
    max-width: 100%;
    transition: 1s;
}
.landing .container .slider .list .item{
    flex: 1 0 100%; /* Ensure each item takes full width */
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
    padding: 20px;
    box-sizing: border-box;
}
.landing .container .slider .buttons{
    position: absolute;
    left: 45%;
    bottom: 8%;
    display: flex;
    justify-content: space-between;
    width: 10%;
}
.landing .container .slider .buttons button{
   width: 50px;
   height: 50px;
   background-color:#7b7b7b00;
   border-radius: 50%;
   border: none;
   color: var(--main-color);
   font-family: monospace;
   font-weight: bold;
   cursor: pointer;
   font-size: 20px;
}

@media (max-width: 991px){
    .landing .text{
        text-align: center;
    }
}
.landing .text h1{
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
}
@media (max-width: 767px){
    .landing .text h1{
        font-size: 28px;
    }
}
.landing .text p{
    font-size: 20px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
}
@media (max-width: 991px){
    .landing .text p{
        margin: 10px auto;
        font-size: 18px;
    }
}
@media (max-width: 767px){
    .landing .text p{
        font-size: 18px;
    }
}
.landing .image img{
    position: relative;
    width: 400px;
    margin-left: 20px;
    animation:  up-and-down 3s linear infinite;
}
@media (max-width: 991px){
    .landing .image img{
        display: none;
    }
}

.building-image img {
    width: 650px !important;    /* Set your desired width */
    height: 680px !important;    /* Maintain aspect ratio */
    margin-left: 100px;
    animation: up-and-down 3s linear infinite;
    display: block;
}
@media (max-width:991px){
    .building-image img{
        width: 150px !important;
        margin-left: 0 !important;
        display: block !important;
    }
}

#scroll-up{
    display: none;
    background-color: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 999;
}
#scroll-up:hover{
    color: #fff;
    background-color: var(--main-color);
    cursor: pointer;
}
#scroll-up i{
    font-size: 20px;
    font-weight: 900;
    animation: bouncing 1.5s infinite;
}
/* End Landing */

/* Start article */
.article {
    background-image: url("f16b828a-10a2-42d0-b622-7c11f478de1b.png"); /* Update this with the correct path to your image */
    background-size: cover; /* Makes the image cover the entire background */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}
.article .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    
}
.article .box{
    box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.article .box:hover{
    transform: translateY(-10px);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}
.article .box img {
    max-width: 100%;
    width: 50%;
    height: 150px;
    display: block;
    margin: auto;
    padding: 10px;
}
.article .box .content{  
    padding: 20px;
}
.article .box .content h3{ 
    margin: 0; 
}
.article .box .content p{  
    margin: 10px 0 0 0;
    line-height: 1.5;
    color: #777;
}
.article .box .info{  
    padding: 20px;
    border-top: 1px solid #e6e6e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article .box .info a{   
    color: var(--main-color);
    font-weight: bold;
}
.article .box .info i{  
    color: var(--main-color);
}
.article .box:hover .info i{  
    animation: move-arrow 0.6s linear infinite;
}
/* End article */

/* Start gallery */
.gallery{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}
.gallery .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
.gallery .box {
    padding: 15px;
    background-color: white;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%), 0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.gallery .box .image{
    position: relative;
    overflow: hidden;
}
.gallery .box .image::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 20%);
    width: 0;
    height: 0;
    opacity: 0;
    z-index: 2;
}
.gallery .box .image:hover::before{
    animation: flashing 0.7s;
}
.gallery .box .image img{
    width: 100%;
    height: 250px;
    max-width: 100%;
    transition: 0.3s;
}
.gallery .box .image:hover img{
    transform: rotate(5deg) scale(1.1);
}
/* End gallery */

/* Strat services */
.services{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}
.services .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
.services .box{
    position: relative;
    background-color: #fff;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%), 0px 2px 4px 0px rgb(0 0 0 / 12%);
    counter-increment: services;
    transition: 0.3s;
}
.services .box::before{
    content: '';
    position: absolute;
    background-color: var(--main-color);
    width: 0;
    height:3px;
    top:-3px;
    left: 50%;
    transition: 0.3s;
    transform: translateX(-50%);
}
.services .box:hover::before{
    width: 100%;
}
.services .box:hover{
    transform: translateY(-10%);
}
.services .box i{
    margin: 30px auto 20px;
    display: block;
    text-align: center;
    color: #d5d5d5;
    font-size: 60px;
}
.services .box h3{
    text-align: center;
    color: var(--main-color);
    font-size: 25px;
    margin: 20px 0 40px;
}
.services .box .info{
   padding: 15px;
   background-color: #f9f9f9;
   text-align: right;
   position: relative;
}
.services .box .info::before{
    content: "0" counter(services);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    padding-right: 15px;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background-color: var(--main-color);
}
.services .box .info::after{
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    height: 100%;
    width: 50px;
    background-color:#d5d5d5;
    transform: skewX(-30deg);
}
.services .box .info a{
    color: var(--main-color);
}
/* End services */

/* Start our-skills */
.our-skills{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.our-skills .container{
    display: flex;
    align-items: center;
    gap: 20px;
} 
.our-skills .box {
    flex: 1;
}
.our-skills .box .prog-holder h3{
    display: flex;
    justify-content: space-between;
    align-items: center; 
}
.our-skills .box .prog-holder h3 span{
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 3px 5px;
    color: var(--main-color);
}
.our-skills .box .prog-holder .prog{
    position: relative;
    background-color: #eee;
    height: 30px;
    width: 100%;
}
.our-skills .box .prog-holder .prog span{
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: width 0.5s linear;
} 
/* End our-skills */

/* Start events */
.events{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}
.events .container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.events .container img{
    max-width: 450px;
}
@media (max-width:991px){
    .events .container img{
        display: none;
    }
}
.events .container .info{
    flex: 1;
    text-align: center;
}
.events .container .info .time{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}
.events .container .info .time .unit{
    border: 1px solid #c3c3c3;
    border-radius: 6px;
    width: 80px;
    text-align: center;
    transition: 0.3s;
}
.events .container .info .time .unit:hover{
    border-color: var(--main-color);
}
.events .container .info .time .unit span{
    display: block;
}
.events .container .info .time .unit span:first-child{
    font-size: 35px;
    padding: 15px;
    color: var(--main-color);
    font-weight: bold;
}
.events .container .info .time .unit span:last-child{
    padding: 8px 10px;
    font-size: 13px;
    border-top: 1px solid #d4d4d4;
}
.events .container .info h2{
    margin-top: 30px;
    font-size: 30px;
}
.events .container .info p{
    color: #777;
    line-height: 1.5;
    font-size: 18px

}
.events .container .subscribe{
    width: 100%;
    margin-top: 50px;
}
.events .container .subscribe form{
   display: flex;
   background-color: #f6f6f6;
   width: 600px;
   margin: 20px auto;
   padding: 30px 40px;
   border-radius: 50px;
   gap: 20px;
}
@media (max-width:991px){
    .events .container .subscribe form{
        flex-direction: column;
        /* border-radius: 0; */
        max-width: 100%;
        padding: 20px;
    }
}
.events .container .subscribe form input[type="email"]{
    padding: 20px;
    border-radius: 50px;
    border: none;
    flex: 1;
    caret-color: var(--main-color);
}
.events .container .subscribe form input[type="submit"]{
    padding: 20px;
    border-radius: 50px;
    border: none;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.events .container .subscribe form input[type="submit"]:hover{
    background-color: #fff;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}
/* End events */

/* Start pricing */
.pricing{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}
.pricing .dots{
    position: absolute;
    background-image: url("../img/dots.png");
    width: 205px;
    height: 180px;
}
.pricing .dots.dots-up{
    right: 0;
    top: 200px;
}
.pricing .dots.dots-down{
    left: 0;
    bottom: 200px;
}
.pricing .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
} 
.pricing .container .box{
    position: relative;
    background-color: white;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%);
    text-align: center;
   transition: 0.3s;
}
.pricing .container .box:hover{
    transform: translateY(-3%);
}
@media (min-width:1200px){
    .pricing .container .box.popular{
        top: -20px;
    }
}
.pricing .container .box.popular .label{
    position: absolute;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    font-size: 19px;
    right: 20px;
    width: 40px;
    padding: 10px 10px 35px 10px;
    writing-mode:vertical-rl;
}
.pricing .container .box.popular .label::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 20px;
    border-color: transparent transparent white transparent;

}
.pricing .container .box .titel{
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin: 30px 0;
}
.pricing .container .box img{
    width: 80px;
    margin-bottom: 30px;
}
.pricing .container .box .price{
    margin-bottom: 30px;
}
.pricing .container .box .price span{
    display: block;
}
.pricing .container .box .price span:first-child{
    font-size: 60px;
    font-weight: bold;
    color: var(--main-color);
    /* margin-bottom: 5px; */
}
.pricing .container .box .price span:last-child{
    color: #777;
    margin-top: 0;
    font-size: 13px;
}
.pricing .container .box ul{
    text-align: left;
}
.pricing .container .box ul li{
    padding: 20px;
    border-top: 1px solid #eee;
}
.pricing .container .box ul li i{
    color: var(--main-color);
    margin-right: 10px;

}
.pricing .container .box a{
    width: fit-content;
    display: block;
    margin: 30px auto 40px;
    padding: 15px 20px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}
.pricing .container .box a:hover{
    background-color: var(--main-color);
    color: white;
}

/* End pricing */
/* Start faqs */
.faqs{
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    /* background-color: var(--section-color); */
}
.faqs .container .section{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faqs .container .section .faq{
    max-width: 700px;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c1c1c1;
    cursor: pointer;
}
.faqs .container .section .faq .question{
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.faqs .container .section .faq .question h3{
    font-size: 25px;
    margin-right: 20px;

}
.faqs .container .section .faq .question i{
    color: var(--main-color);
    transition: transform 0.5s;
}
.faqs .container .section .faq.active .question i{
    transform: rotate(180deg);
}
.faqs .container .section .faq .answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;

}
.faqs .container .section .faq .answer p{
    margin-top: 0;
    line-height: 1.6;
    font-size: 17px;

}
.faqs .container .section .faq.active .answer{
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

/* End faqs */

/* Start footer */
.footer{
    padding-top: 100px;
    padding-bottom: 10px;
    position: relative;
    background-color: var(--section-color);
}
.footer .container {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.footer .container .list-item{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 80px;
    padding-bottom: 20px;

}
.footer .container .list-item .info a{
    color: var(--main-color);
    font-size: 30px;
    font-weight: bold;
}
.footer .container .list-item .info p{
    font-size: 16px;
}
.footer .container .list-item .list h3{
    font-size: 20px;
    font-weight: bold;
}
.footer .container .list-item .list ul li{
   line-height: 2;
}
.footer .container .list-item .list ul.media{
    font-size: 20px;
    display: flex;
    gap: 10px;
 }
.footer .container .list-item .list a{
    color: #000;
}
.footer .container .list-item .list a:hover{
    color: var(--main-color);
}
.footer .container .copyright{
    border-top: 1px solid #a0a0a0;
    text-align: center;
    padding: 20px 0;
}
.footer-space {
  height: 100px; /* Adjust height as needed */
}
@media (max-width: 991px){
    .footer .container .list-item{
        text-align: center;
    }
    .footer .container .list-item .list ul.media{
        justify-content: center;
        align-items: center;
     }
}
/* end footer */

/* Start animation */
@keyframes up-and-down {
    0%,100%{
        top: 0;
    }
    50%{
        top: -20px;
    }
}
@keyframes bouncing {
    0%, 10%, 20%, 50%, 80%, 100%{
        transform: translateY(0);
    }
    40%, 60%{
        transform: translateY(-5px);
    }
}
@keyframes left-move {
    50%{
        left: 0;
        width: 12px;
        height: 12px;
    }
    100%{
        left: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}
@keyframes right-move {
    50%{
        right: 0;
        width: 12px;
        height: 12px;
    }
    100%{
        right: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}
@keyframes move-arrow {
    100%{
        transform: translateX(10px);
    }
}
@keyframes flashing {
    0%, 40%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        width: 200%;
        height: 200%;

    }
}
@keyframes fade {
    form{
        opacity: 0;
        transform: translateY(-30px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
    
}
/* End animation */

.contact-flex-container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}

.contact-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-container {
  flex: 2 1 380px;
  max-width: 600px;
  margin: 0;
  padding: 0;
}

.contact-info {
  width: 100%;
  box-sizing: border-box;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 1em;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-form button {
  background: #d63427;
  color: #fff;
  padding: 12px 0;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
}

.pub-title {
  margin-top: 2em;
  font-weight: 600;
}

address {
  font-style: normal;
  margin-bottom: 0.5em;
}

@media (max-width: 800px) {
  .contact-flex-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .contact-image, .container {
    flex: 1 1 100%;
    max-width: 100%;
  }
}