@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');

:root {
 --main-text: #14573a;
 --main-bg: #1b8354;
 --second-text: #222a26;
 --paragraoh-text: #313842;
 --container-width: 1100px;
 --bg-box: #f2fcf8;
}

* {
 padding: 0;
 margin: 0;
 text-decoration: none;
 border: none;
 box-sizing: border-box;
}

body {
 background-color: #fff !important;
 background: url(../img/patternBackground.png) top center no-repeat;
 font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.container {
 width: 100%;
 max-width: var(--container-width);
 background: url('../img/main_border.png') top center no-repeat;
 margin: 3rem auto;
 padding: 3rem 3rem;
 position: relative;
}

h2.main-title {
 display: block;
 width: 250px;
 background-color: #1b8354;
 position: absolute;
 top: -25px;
 right: 0;
 left: 0;
 margin: 0 auto;
 filter: drop-shadow(4px 0px 12px #1b835463);
 color: #fff;
 padding: 0.7rem 1rem;
 font-weight: 500;
 font-size: 1.1rem;
 border-radius: 8px;
 text-align: center;
}
.container h3 {
 color: #1b8354;
 margin-bottom: 1rem;
}

@media screen and (max-width: 600px) {
 html {
  overflow-x: hidden;
  padding: 0 1rem;
  max-width: 100%;
  width: 100%;
 }

 .container {
  padding: 2rem 0.5rem;
 }
 h2 {
  text-align: center;
 }
}

div h2 {
 font-size: 1.1rem;
 color: #313842;
 border: 1px solid #1b835453;
 background-color: #1b8354;
 width: fit-content;
 filter: drop-shadow(0 4px 16px #1b835471);
 padding: 0.5rem 1rem;
 border-radius: 1rem;
 color: #fff;
 font-weight: 500;
 margin: 1rem auto;
}

div img {
 display: block;
 margin: 1rem auto;
 border-radius: 1rem;
 border: 1px solid #1b83542f;
 filter: drop-shadow(0 4px 12px #4c605717);
 width: 90%;
}

p {
 font-size: 1.1rem;
 line-height: 1.8;
}

p + p {
 margin-top: 1rem;
}


.hr {
 width: 100%;
 display: block;
 height: 1px;
 background-color: #1b83542b;
 margin: 2rem auto ;
 overflow: hidden;
}