body {
  margin: 0;
  padding: 0;
  -webkit-scroll-behavior: smooth;
  -moz-scroll-behavior: smooth;
  scroll-behavior: smooth;
}

.websiteMain {
  position: relative;
  width: 1200px;
  margin: auto;
  overflow: hidden;
}

/*///////////// Menu \\\\\\\\\\\\\*/

.websiteTitle {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 10px 0;
  background-color: #eee;
  z-index: 10;
}

.logoContent {
  cursor: default;
}

.menuLogo {
  position: relative;
  display: block;
  width: 75px;
  height: auto;
  margin: auto;
  margin-right: 10px;
  cursor: pointer;
}

.rtl .menuLogo {
  margin-left: 10px;
  margin-right: auto;
}

.websiteTitleP {
  position: relative;
  display: block;
  position: relative;
  display: block;
  margin: auto;
  margin-left: 0;
  padding-left: 10px;
  font-size: 25px;
}

.rtl .websiteTitleP {
  margin-left: auto;
  margin-right: 0;
  padding-right: 10px;
}

.websiteMenu2 {
  position: relative;
  display: block;
  width: 100%;
  background-color: #000;
}

.menuContainer {
  position: relative;
  display: grid;
  grid-template-columns: auto 60px 70px;
  width: 1200px;
  height: auto;
  margin: auto;
  padding: 10px 0;
  background-color: #fff;
  text-align: left;
  align-items: center;
  z-index: 10;
}

.websiteMenu2 .menuContainer {
  top: 0;
  background-color: #000;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
}

.websiteMenu {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin-left: 30px;
  text-align: left;
}

.rtl .websiteMenu {
  text-align: right;
  margin-left: auto;
  margin-right: 30px;
}

.listMenu {
  position: relative;
  display: inline-flex;
  height: 100%;
  list-style: none;
  align-items: center;
  margin: 0 30px 0 0;
}

.rtl .listMenu {
  margin: 0 0 0 32px;
}

.menuActive {
  color: rgb(0, 0, 0);
  font-weight: 900;
}

.websiteMenu2 .menuActive a {
  color: #fff !important;
}

.footerMenuActive {
  color: #fff !important;
  font-weight: 900;
}

.listMenu>a {
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  color: black;
  text-decoration: none;
}

a {
  cursor: pointer;
}

.websiteMenu2 .listMenu a {
  color: #fff;
}

.listMenu>a::before {
  content: "";
  position: relative;
  display: block;
  width: 0px;
  height: 1px;
  margin: 0 auto;
  top: 24px;
  right: 0;
  bottom: 0;
  left: -8px;
  background-color: #1985ae;
  transition: all 0.3s ease-in-out;
}

.websiteMenu2 .listMenu>a::before {
  background-color: #fff;
}

.listMenu>a:hover::before {
  width: calc(100% + 16px);
}

.listMenu>.menuActive::before, .listMenu>.footerMenuActive::before {
  content: "";
  position: relative;
  display: block;
  width: calc(100% + 16px);
  height: 1px;
  margin: 0 auto;
  top: 24px;
  background-color: #1985ae;
}

.rtl .listMenu>.footerMenuActive::before, .rtl .listMenu>.menuActive::before, .rtl .listMenu>a::before {
  top: 28px;
  right: -8px;
}

.listMenu>a::after {
  content: "";
  position: relative;
  display: block;
  width: 0;
  height: 1px;
  margin: 0 auto;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1985ae;
  transition: all 0.3s ease-in-out;
}

.websiteMenu2 .listMenu>a::after {
  top: 11px;
  background-color: #fff;
}

.rtl .listMenu>a::after {
  top: 9px;
}

.listMenu>.menuActive::after, .listMenu>.footerMenuActive::after {
  content: "";
  position: relative;
  display: block;
  width: 50%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}

/*/////////////////// Toggle Menu \\\\\\\\\\\\\\\\\\\*/

.toogleMenu {
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  margin: auto;
  top: 15px;
  right: 13px;
  padding: 0 5px;
  border: none;
  background-color: transparent;
}

.toogleMenu>span {
  position: absolute;
  display: block;
  height: 4px;
  margin: auto;
  background-color: #1985ae;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.websiteMenu2 .toogleMenu>span {
  background-color: #fff;
  pointer-events: none;
}

.toogleMenu>span:nth-child(1) {
  width: 15px;
  top: 8px;
  left: 5px;
}

.websiteMenuShow>span:nth-child(1) {
  top: 12px;
  left: 7px;
  transform: rotate(45deg);
}

.toogleMenu>span:nth-child(2) {
  width: 30px;
  top: 18px;
  left: 5px;
}

.websiteMenuShow>span:nth-child(2) {
  top: 18px;
  left: 5px;
  transform: rotate(-45deg);
}

.toogleMenu>span:nth-child(3) {
  width: 15px;
  top: 28px;
  right: 5px;
}

.websiteMenuShow>span:nth-child(3) {
  top: 23px;
  right: 7px;
  transform: rotate(45deg);
}

button, input[type="submit"] {
  cursor: pointer;
}

/*///////////////// Search Page \\\\\\\\\\\\\\\\\\*/

.searchContent {
  position: relative;
  display: grid;
  grid-template-columns: auto 60px;
  max-width: 1200px;
  height: auto;
  min-height: calc(100vh - 508px);
  margin: 30px auto;
}

.searchPart1 {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  margin-right: 65px;
}

.rtl .searchPart1 {
  margin-left: 65px;
  margin-right: auto;
}

.searchForm {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.searchForm input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 50px;
  padding: 10px 5px;
  font-size: 22px;
  border: none;
  background-color: #fff;
  border-bottom: 2px solid #494949;
  border-radius: 2px;
  box-shadow: 0 0 30px 5px #eee;
}

.searchForm label {
  position: relative;
  display: inline-block;
  left: 0;
}

.searchForm label {
  right: 0;
}

/*///// Search Button \\\\\*/

.searchButton {
  position: relative;
  display: grid;
  place-content: center;
  width: 50px;
  height: 45px;
  margin: auto;
  margin-right: 0;
  background-color: #1985ab;
  border: none;
  text-decoration: none;
}

.websiteMenu2 .searchButton {
  background-color: #fff;
}

.searchPageButton {
  margin-left: 10px;
}

.rtl .searchPageButton {
  margin-left: auto;
  margin-right: 10px;
  color: #fff;
}

.searchPageButton {
  background-color: var(--primary-color);
  transition: all 0.2s ease-in-out;
}

.searchPageButton:hover {
  background-color: var(--primary-color);
}

.iconStyleWebsite {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

.websiteMenu2 .iconStyleWebsite {
  color: #000;
}

/*///////////////// Languages Selection \\\\\\\\\\\\\\\\\\*/

.langSelcButton {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 12px 0;
  border: none;
  color: #1985ab;
  background-color: transparent;
  border: 2px solid #1985ab;
  border-radius: 10px;
  font-size: 22px;
  font-family: 'icon' !important;
  cursor: pointer;
}

.websiteMenu2 .langSelcButton {
  color: #fff;
  border: 2px solid #fff;
}

.langSelcContent {
  display: none;
}

.websiteLangShow {
  display: block;
  height: auto;
  border-radius: 0;
}

.langSelcButton:hover {
  color: #fff;
  background-color: #1985ab;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.websiteLangStyle2 {
  position: absolute;
  width: 120px;
  margin: auto;
  margin-top: 80px;
  right: 0;
  background-color: #fff;
  border-radius: 2px;
  border-top-right-radius: 0;
  box-shadow: 0 0 25px -10px #000;
  z-index: 1000000;
}

.rtl .websiteLangStyle2 {
  left: 0;
  right: auto;
}

.websiteLangStyle2::before {
  content: '';
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  top: -16px;
  right: 0;
  color: #fff;
  font-family: 'icon' !important;
}

.rtl .websiteLangStyle2::before {
  top: -22px;
  left: 7px;
  right: auto;
}

.langOptions {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding: 8px 8px;
  color: #000;
  text-decoration: none;
}

.langOptions:hover {
  background-color: #eee;
  transition: all 0.1s ease-in-out;
}

.languagesSelectionFooter {
  position: relative;
  display: block;
  height: auto;
  width: 49px;
  top: 5px;
  left: 0;
  padding-bottom: 2px;
  border-bottom: 1px solid #9e9e9e;
}

/*///////////// Home \\\\\\\\\\\\\*/

/*///// Slideshow \\\\\\\*/

.homeBackground {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  margin: 0 -100000px;
  padding: 0 100000px;
}

.backgroundSlideshowimage {
  position: relative;
  display: block;
  width: 100%;
  min-height: 610px;
  height: auto;
  background: linear-gradient( 35deg, rgb(69 199 251 / 54%), rgba(15, 109, 185, .9)), url(/assets/images/website/img1.jpg);
  background-size: cover;
  transition: all 0.3s ease-in-out;
}

.slideshowContainer {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  position: relative;
  display: none;
  width: 100%;
  height: auto;
  grid-template-columns: calc(50% - 20px) 50%;
  grid-column-gap: 20px;
  margin: 0 auto;
  padding: 85px 0;
  align-items: center;
}

@media (max-width: 750px) {
  .mySlides {
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    grid-column-gap: 0;
    grid-row-gap: 20px;
    padding: 20px 0;
    align-items: start;
  }
}

.slideshowImages {
  position: relative;
  display: block;
  width: 100%;
  height: 350px;
  border-radius: 5px;
  object-fit: cover;
}

.slideshowTitle {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation-name: fadeInUp;
  animation-duration: 2s;
}

.rtl .slideshowTitle {
  font-size: 36px;
  letter-spacing: 0;
}

.slideshowMeta {
  margin: 20px auto 40px auto;
  color: #fff;
  font-size: 26px;
}

.rtl .slideshowMeta {
  font-size: 26px;
}

.slideshowReadMore {
  position: relative;
  display: block;
  width: 180px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  animation-name: fadeInUp;
  transition: all 0.2s ease-in-out;
}

.slideshowReadMore:hover {
  color: #1985ab;
  background-color: #fff;
}

/* Fading animation */

.fade .slideshowImages {
  -webkit-animation: fadeScale 1.5s ease-in-out;
  animation: fadeScale 1.5s ease-in-out;
}

.fade .slideshowTitle {
  -webkit-animation: fadeUp 1.5s ease-in-out;
  animation: fadeUp 1.5s ease-in-out;
}

.fade .slideshowMeta {
  -webkit-animation: fadeLeft 1.5s ease-in-out;
  animation: fadeLeft 1.5s ease-in-out;
}

.fade .slideshowReadMore {
  -webkit-animation: fadeDown 1.5s ease-in-out;
  animation: fadeDown 1.5s ease-in-out;
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* The dots/bullets/indicators */

.slideshowDotContainer {
  position: relative;
  margin-bottom: 20px;
  padding: 10px 0;
  pointer-events: none;
}

.slideshowAction {
  position: absolute;
  width: 100%;
  height: 45px;
  top: -4px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  pointer-events: all;
}

.activeDot, .dot:hover {
  background-color: #00b3f1;
}

/* Next & previous buttons */

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: .6s ease;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: all;
}

/* Position the "next button" to the right */

.next {
  left: 0;
  right: auto;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.25);
}

/*///////////////// Announcements Button \\\\\\\\\\\\\\\\\\*/

.announcementsBtn {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  margin: auto;
  margin-top: 15px;
  margin-right: 0;
  padding-right: 70px;
  color: #1985ab;
  font-size: 18px;
  background-color: transparent;
  border: none;
  animation-name: fadeInUp;
  transition: all 0.5s;
}

.rtl .announcementsBtn {
  margin: auto;
  margin-top: 15px;
  margin-left: 0;
  padding-left: 113px;
  padding-right: 0;
}

.announcementsBtn span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s;
}

.announcementsBtn:hover span {
  padding-right: 25px;
}

.rtl .announcementsBtn:hover span {
  padding-left: 25px;
}

.announcementsBtn span::after {
  content: "»";
  position: absolute;
  top: -11px;
  right: -20px;
  color: #1985ab;
  font-size: 32px;
  opacity: 0;
  transition: 0.5s;
}

.rtl .announcementsBtn span::after {
  top: -6px;
  left: -130px;
}

.announcementsBtn:hover span::after {
  right: 0;
  opacity: 1;
}

/*//////////// Home - About \\\\\\\\\\\\*/

/*/// Home - Chart \\\*/

dl {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  flex-direction: column;
}

dt {
  display: block;
  width: 1200px;
  margin: auto;
  margin-bottom: 20px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 25px;
  text-align: center;
  letter-spacing: 1px;
}

.genderFilter {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
  text-align: right;
}

.genderButton {
  position: relative;
  margin-left: 20px;
  padding: 16px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  outline: none;
  cursor: pointer;
}

.genderButton>a {
  color: #000;
  text-decoration: none;
}

.genderButton::before {
  content: "";
  position: relative;
  display: block;
  width: 0px;
  height: 1px;
  margin: 0 auto;
  top: 28px;
  right: 0;
  bottom: 0;
  left: -8px;
  background-color: #1985ae;
  transition: all 0.3s ease-in-out;
}

.rtl .genderButton::before {
  right: -8px;
  left: 0;
}

.genderButton:hover::before {
  width: calc(100% + 16px);
  height: 1px;
}

.genderActive {
  color: rgb(0, 0, 0);
  font-weight: 900;
}

.genderActive::before {
  width: calc(100% + 16px);
}

.text {
  position: absolute;
  display: flex;
  width: 95px;
  height: 40px;
  left: 0;
  font-size: 18px;
  font-weight: 600;
  background-color: #fff;
  justify-content: flex-end;
  align-items: center;
}

.chartPercentage {
  width: 90%;
  height: 40px;
  margin-left: 110px;
  font-size: 0.8em;
  line-height: 1px;
  text-transform: uppercase;
  background: repeating-linear-gradient( to right, #ddd, #ddd 1px, #fff 1px, #fff 5%);
}

.chartPercentage::after {
  content: "";
  position: relative;
  display: block;
  width: 250px;
  height: 90%;
  margin-bottom: 10px;
  top: 50%;
  background-color: #1985ab;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.chartPercentage:nth-child(2)::after {
  width: 200px;
}

.chartPercentage:nth-child(3)::after {
  width: 100px;
}

#chartTable {
  position: relative;
  display: block;
  /* fixes layout wonkiness in FF1.5 */
  width: 645px;
  height: 300px;
  margin: auto;
  padding: 0;
  font-size: 11px;
  background: transparent;
}

#chartTable tr, #chartTable th, #chartTable td {
  position: absolute;
  width: 215px;
  margin: 0;
  padding: 0;
  bottom: 0;
  text-align: center;
  z-index: 2;
}

#chartTable td {
  transition: all 0.3s ease;
}

#chartTable thead tr {
  margin: 0 0 0 10px;
  width: 125px;
  top: 35%;
  left: 100%;
  bottom: auto;
}

#chartTable thead th {
  width: 100%;
  height: auto;
  padding: 0px;
  padding-left: 10px;
  background-color: #fff !important;
  border-left: 25px solid;
  text-align: left;
}

#chartTable thead th.disability {
  position: relative;
  display: block;
  left: 0;
  font-size: 15px;
  border-color: #1985ab !important;
  line-height: 2;
}

#chartTable thead th.careGiver {
  display: block;
  position: relative;
  top: 10px;
  left: 0;
  font-size: 15px;
  border-color: #3db7e4 !important;
  line-height: 2;
}

#chartTable thead th.familyCare {
  display: block;
  position: relative;
  top: 20px;
  left: 0;
  font-size: 15px;
  border-color: #b3ebff !important;
  line-height: 2;
}

#chartTable tbody tr {
  height: 296px;
  padding-top: 2px;
  color: #AAA;
  border-right: 1px dotted #C4C4C4;
}

#chartTable #q1 {
  left: 0;
}

#chartTable #q2 {
  left: 215px;
}

#chartTable #q3 {
  left: 430px;
}

#chartTable #q4 {
  left: 450px;
  border-right: none;
}

#chartTable tbody th {
  bottom: -30px;
  color: #333;
  font-size: 16px;
  vertical-align: top;
}

#chartTable .Bar {
  width: 60px;
  color: #000;
  border: 1px solid;
  border-bottom: none;
}

#chartTable .Bar p {
  position: absolute;
  width: 100%;
  top: -22px;
  margin: 5px 0 0;
  padding: 0;
  font-family: 'ltr';
}

#chartTable .disability {
  left: 13px;
  background-color: #1985ab;
  border-color: transparent;
}

#chartTable .careGiver {
  left: 77px;
  background-color: #3db7e4;
  border-color: transparent;
}

#chartTable .familyCare {
  left: 141px;
  background-color: #b3ebff;
  border-color: transparent;
}

#filterListCharts {
  position: relative;
  width: 596px;
  height: 300px;
  margin-bottom: -300px;
  left: 2px;
  font-size: 10px;
  z-index: 1;
}

#filterListCharts .filterListChart {
  position: relative;
  width: 642px;
  border-bottom: 1px dotted #C4C4C4;
}

#filterListCharts .filterListChart p {
  position: absolute;
  margin: 0 0 0 0.5em;
  top: -0.8em;
  left: -4em;
  font-size: 15px;
}

/*/// Chart \\\*/

.chartInformation {
  position: relative;
  display: block;
  margin: 60px auto 10px auto;
  text-align: center;
}

.chartInformation span {
  display: inline-block;
  margin: 20px 5px 0px 5px;
  padding: 3px 15px 5px 15px;
  color: #fff;
  border-radius: 5px;
}

.chartBackground {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  margin: 10px auto 50px auto;
}

@media (max-width:768px) {
  .chartBackground {
    display: block;
    grid-template-columns: auto;
  }
}

.chartPanel {
  position: relative;
  display: block;
  max-width: 1200px;
  margin: 30px 10px;
  border: 1px solid #eee;
}

.chartContent {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

.chartBar {
  display: grid;
  grid-template-columns: 100px auto;
  margin: 15px;
}

.chartTitle {
  position: relative;
  display: block;
  padding: 10px;
  text-align: center;
  color: #000;
  background-color: #eeeeee;
}

.chartBarTitle {
  display: grid;
  place-items: center;
}

.chartBarRatio {
  position: relative;
  display: flex;
  height: 25px;
  margin: 5px 0;
}

.chartBarColor {
  position: relative;
  display: inline-grid;
  width: 0px;
  height: 100%;
  transition: all 1s ease-in-out;
}

.chartMale {
  background-color: #00b3f1;
}

.chartFemale {
  background-color: #EB4591;
}

.chartBarText {
  position: relative;
  display: inline-grid;
  height: 100%;
  place-content: center;
  padding: 0 5px;
  left: 10px;
  color: #fff;
  font-family: 'ltr';
  font-size: 14px;
  border-radius: 5px;
  background-color: #000;
}

.rtl .chartBarText {
  left: auto;
  right: 10px;
}

.chartBarText::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -9px;
  border: 5px solid transparent;
  border-right-color: #000;
}

.rtl .chartBarText::after {
  left: auto;
  right: -9px;
  border-left-color: #000;
  border-right-color: transparent;
}

.aboutContent {
  display: grid;
  grid-template-columns: 675px 525px;
  width: 100%;
  height: auto;
}

.headingPart2h1 {
  position: relative;
  display: block;
  width: 1200px;
  margin-top: 35px;
  color: #1985ab;
  font-size: 25px;
  text-align: center;
  letter-spacing: 2px;
}

.rtl .headingPart2h1 {
  font-size: 35px;
  letter-spacing: 0;
}

.headingPart2h1::before, .headingPart2h1::after {
  content: "";
  position: relative;
  display: block;
  height: 1px;
  margin: auto;
  background-color: #000;
}

.headingPart2h1::before {
  width: 145px;
  top: 35px;
}

.rtl .headingPart2h1::before {
  width: 160px;
  top: 42px;
}

.headingPart2h1::after {
  width: 50px;
  margin-top: 10px;
}

.rtl .headingPart2h1::after {
  width: 55px;
  top: 2px;
}

.headingPart2p1 {
  position: relative;
  display: block;
  width: 1200px;
  height: 8%;
  margin: 40px 0;
  margin-top: 25px;
  color: #c2c9d3;
  font-size: 18px;
  text-align: center;
}

.rtl .headingPart2p1 {
  font-size: 20px;
}

.headingPart2h3 {
  position: relative;
  display: block;
  width: 95%;
  height: auto;
  margin: 0;
  top: 20px;
  color: #1985ab;
  font-size: 25px;
  letter-spacing: 2px;
}

.rtl .headingPart2h3 {
  width: 90%;
  letter-spacing: 0;
}

.headingPart2p2 {
  position: relative;
  display: block;
  width: 95%;
  height: auto;
  top: 30px;
  color: #000;
  font-size: 22px;
}

.rtl .headingPart2p2 {
  width: 86%;
  margin-top: 10px;
}

.imagePart2 {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #fff;
  background-size: cover;
  box-shadow: 0px 0px 30px 5px #c1c1c1b0;
}

/*//////////// Home - News Content\\\\\\\\\\\\\*/

.newsBackgroundColor {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #1783a9;
}

.homeNewsContent {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  margin: 0 -100000px;
  padding: 0 100000px;
}

.homeNewsContentPadding {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 60px 0;
}

.headingPart3h1 {
  position: relative;
  display: block;
  width: 1200px;
  color: #fff;
  font-size: 25px;
  letter-spacing: 2px;
  text-align: center;
}

.rtl .headingPart3h1 {
  font-size: 40px;
  letter-spacing: 0;
}

.headingPart3h1::before, .headingPart3h1::after {
  content: "";
  position: relative;
  display: block;
  height: 1px;
  margin: auto;
  background-color: #fff;
}

.headingPart3h1::before {
  width: 100px;
  top: 34px;
}

.rtl .headingPart3h1::before {
  width: 95px;
  margin: auto;
  top: 46px;
}

.headingPart3h1::after {
  width: 40px;
  margin-top: 9px;
}

.rtl .headingPart3h1::after {
  width: 35px;
  margin: auto;
  margin-top: 9px;
}

.headingPart3p1 {
  position: relative;
  display: block;
  width: 1200px;
  height: 8%;
  margin: 40px 0;
  margin-top: 10px;
  color: #c2c9d3;
  font-size: 18px;
  text-align: center;
}

.rtl .headingPart3p1 {
  margin-top: 70px;
  font-size: 20px;
}

.newsContent {
  position: relative;
  display: grid;
  grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
  max-width: 1200px;
  width: 100vw;
  padding-bottom: 25px;
}

/*////////// Home - Events \\\\\\\\\\\\*/

.eventsBackground {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  margin: 0 -100000px;
  padding: 0 100000px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-size: cover;
}

.eventsBackgroundColor {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #fafbff;
}

.headingPart4h1 {
  position: relative;
  display: block;
  width: 1200px;
  font-size: 25px;
  letter-spacing: 3px;
  text-align: center;
}

.rtl .headingPart4h1 {
  font-size: 40px;
  letter-spacing: 0;
}

.headingPart4h1::before, .headingPart4h1::after {
  content: "";
  position: relative;
  display: block;
  height: 1px;
  margin: auto;
  background-color: #000;
}

.headingPart4h1::before {
  width: 115px;
  top: 34px;
}

.rtl .headingPart4h1::before {
  width: 140px;
  top: 51px;
  margin: auto;
}

.headingPart4h1::after {
  width: 45px;
  margin-top: 10px;
}

.rtl .headingPart4h1::after {
  width: 45px;
  margin: auto;
  margin-top: 17px;
}

.headingPart4p1 {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  margin: 40px 0;
  margin-top: 15px;
  color: #c2c9d3;
  font-size: 18px;
  text-align: center;
}

.rtl .headingPart4p1 {
  margin-top: 30px;
  font-size: 20px;
}

/*///////////// Footer \\\\\\\\\\\\*/

.footerBackgroundColor {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background-color: #2b2b2b;
}

.footerContentPadding {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.footerPanel {
  position: relative;
  display: block;
  width: 1200px;
  margin: auto;
}

.footerContainer {
  display: grid;
  grid-template-columns: 600px 600px;
  width: 100%;
  height: 220px;
}

.footerColumn1 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  background-size: cover;
}

.imageColumn1 {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  margin: 17px auto;
  margin-left: 18px;
  background-size: cover;
}

.rtl .imageColumn1 {
  margin-right: 18px;
}

.footerColumn2 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  background-size: cover;
}

.footerMenuContainer {
  position: relative;
  display: block;
  margin-top: 100px;
  text-align: right;
}

.footerListMenu {
  display: inline-block;
}

.footerListMenu>a {
  position: relative;
  display: block;
  margin: 0 0 0 18px;
  color: #fff;
  text-decoration: none;
}

.footerListMenu>a::before {
  content: "";
  position: relative;
  display: block;
  width: 0px;
  height: 1px;
  margin: auto;
  top: 23px;
  right: 0;
  bottom: 0;
  left: -5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.rtl .footerListMenu>a::before {
  top: 27px;
}

.footerListMenu>a:hover::before {
  position: relative;
  display: block;
  width: calc(100% + 10px);
  height: 1px;
  margin: 0 auto;
  left: -5px;
  right: 0;
  bottom: 0;
  border-radius: 5px;
}

.rtl .footerListMenu>a:hover::before {
  right: -5px;
}

.footerListMenu>.footerMenuActive::before {
  content: "";
  position: relative;
  display: block;
  width: calc(100% + 10px);
  height: 1px;
  margin: 0 auto;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #fff;
}

.rtl .footerListMenu>.footerMenuActive::before {
  right: -5px;
}

.footerListMenu>.footerMenuActive::after {
  content: "";
  position: relative;
  display: block;
  width: 50%;
  height: 1px;
  margin: 0 auto;
  top: 10px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background-color: #fff;
}

.rtl .footerListMenu>.footerMenuActive::after {
  top: 8px;
}

.footerSocialIcons {
  position: relative;
  display: block;
  margin-top: 15px;
  text-align: right;
}

.rtl .footerSocialIcons {
  text-align: left;
}

.footerSocial {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 25px;
  padding: 8px;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  text-decoration: none;
  align-self: center;
}

.footerSocial>svg {
  position: relative;
  display: block;
  height: 100%;
  margin: auto;
  align-self: center;
}

/*/// Part 2 \\\*/

.footerBackground2 {
  position: relative;
  display: block;
  width: 1200px;
  height: 60px;
  margin: 0 -100000px;
  padding: 0 100000px;
  background-color: #2b2b2b;
}

.footerPart2 {
  display: grid;
  grid-template-columns: 600px 600px;
}

.footerPart2Content1 {
  position: relative;
  display: block;
  max-width: 1200px;
  width: 100%;
  height: 60px;
  color: #fff;
  background-color: #2b2b2b;
  align-content: center;
  padding-top: 20px;
}

.footerPart2Content1>a {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: auto;
  text-decoration: none;
  color: white;
  font-weight: 900;
}

.footerCopyright {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  margin: auto;
  background-color: #2b2b2b;
}

.footerCopyrightP {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.footerLink {
  margin-bottom: 6px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

.footerPart2Content2 {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #fff;
  background-color: #2b2b2b;
  text-align: right;
}

/*///////////////// News Page \\\\\\\\\\\\\\\\\\*/

.newsPageBackgroundColor {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100vh - 432px);
  background-color: #f2f4f6;
}

@media (max-width: 720px) {
  .newsPageBackgroundColor {
    min-height: calc(100vh - 374px);
  }
}

.newsPageContent {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  margin: 0 -100000px;
  padding: 80px 100000px;
  padding-top: 34px;
}

/* News Article */

.newsArticle {
  position: relative;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  height: 100%;
  margin: 80px 0;
}

@media (max-width: 600px) {
  .newsArticle {
    grid-template-columns: auto;
    padding: 15px;
    text-align: justify;
    text-align-last: center;
  }
}

.newsArticle .newsImage {
  display: inline-block;
  padding: 0 10px;
}

.newsArticle:nth-child(odd) .newsImage {
  float: left;
}

.rtl .newsArticle:nth-child(odd) .newsImage {
  float: right;
}

.newsArticle:nth-child(even) .newsImage {
  float: right;
}

.rtl .newsArticle:nth-child(even) .newsImage {
  float: left;
}

.newsArticle .newsImage img {
  display: block;
  width: 100%;
}

.newsArticle .newsDetail {
  display: block;
  width: 100%;
  padding: 0 10px;
}

/*///////////////// Events Page \\\\\\\\\\\\\\\\\\*/

.eventsPageBackgroundColor {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 455px);
  padding-top: 20px;
  background-color: #f2f4f6;
}

/*/// Content \\\*/

.eventsPageContent {
  display: grid;
  grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
  width: 1200px;
  height: 48%;
  padding-bottom: 35px;
}

.eventsPagePart1, .eventsPagePart2, .eventsPagePart3 {
  position: relative;
  display: block;
  width: 360px;
  height: auto;
  background-color: #fff;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 0 30px 10px rgb(0 0 0 / 0.05);
  transition: all 0.25s ease;
}

.eventsPagePart2 {
  margin-left: 20px;
}

.eventsPagePart3 {
  margin-left: 40px;
}

.eventsPagePart1:hover, .eventsPagePart2:hover, .eventsPagePart3:hover {
  transform: scale(1.03);
}

.evntsPageImagePart1 {
  position: relative;
  display: block;
  width: 100%;
  height: 175px;
  border-radius: 3px;
  object-fit: cover;
}

.paragrafPart1 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 900;
}

.rtl .paragrafPart1 {
  height: auto;
}

.datePart1 {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
  color: #afafaf;
}

.rtl .datePart1 {
  margin: 8px 0;
  font-size: 16px;
}

/*///////////////// Announcements Page \\\\\\\\\\\\\\\\\\*/

.announcementsPageBackgroundColor {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100vh - 432px);
}

.announcementsPageTitle {
  position: relative;
  display: block;
  max-width: 1200px;
  height: auto;
  padding-top: 50px;
  padding-bottom: 30px;
  font-size: 25px;
}

.borderBottom {
  position: relative;
  display: block;
  max-width: 1200px;
  width: 100%;
  height: 1px;
  background-color: #dee2e6;
}

.announcementsContainer {
  position: relative;
  display: block;
  max-width: 1200px;
  height: auto;
  margin: 20px -100000px;
  padding: 20px 100000px;
  background-color: #eee;
}

.announcementsContainer:nth-child(odd) {
  background-color: transparent;
}

.dateOfAnnouncements {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  color: #0093e0;
  font-size: 16px;
}

.rtl .dateOfAnnouncements {
  font-size: 18px;
}

.announcementsTitle {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #0093e0;
  font-size: 25px;
  font-weight: 900;
  text-decoration: none;
}

.announcementsParagraf {
  position: relative;
  display: block;
  width: 1200px;
  height: auto;
  color: #000;
  font-size: 22px;
}

.btnDesign3 {
  position: relative;
  display: block;
  max-width: 1200px;
  width: 100%;
}

/*///////////////// About Us Page \\\\\\\\\\\\\\\\\\*/

.aboutusPage {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 40px 0;
}

.aboutusPageHeader {
  position: relative;
  display: block;
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 25px;
  font-weight: 900;
}

.aboutusPagetitle {
  position: relative;
  display: block;
  padding-top: 30px;
  padding-bottom: 15px;
  font-size: 22px;
  font-weight: 900;
}

.aboutusPageParagraf {
  font-size: 20px;
  line-height: 30px;
}

.aboutContentHome {
  height: 100%;
  margin: auto 0;
}

/*///////////////// Contact Us Page \\\\\\\\\\\\\\\\\\*/

.contactusContentGrid {
  position: relative;
  display: grid;
  grid-template-columns: calc(100% / 2) calc(100% / 2);
  padding: 80px 0;
  min-height: calc(100vh - 455px);
}

.contactusPageHeader {
  position: relative;
  display: block;
  padding-bottom: 30px;
  font-size: 25px;
}

.formFullName {
  position: relative;
  display: block;
  width: 590px;
  height: 20px;
  margin-bottom: 10px;
  padding: 20px;
  font-size: 16px;
  color: #000;
  border: none;
  background-color: #d3d3d362;
  outline: none;
}

.formMessage {
  position: relative;
  display: block;
  width: 590px;
  height: 200px;
  margin-bottom: 10px;
  padding: 20px;
  font-size: 16px;
  color: #000;
  border: none;
  background-color: #d3d3d362;
  outline: none;
  resize: none;
}

.sendBtnContactPage {
  position: relative;
  display: block;
  width: 130px;
  height: 50px;
  padding: 12px 30px;
  color: white;
  background-color: #00a4f1;
  border: none;
  cursor: pointer;
}

.sendBtnContactPage:hover {
  background-color: #2c00f1;
}

.contactusMap1 {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 10px;
  border: none;
}

.contactusMap2 {
  display: none;
}

.rtl .contactusMap {
  padding-right: 10px;
}

/*/////////////////////////// Responsive \\\\\\\\\\\\\\\\\\\\\\\\\\\*/

@media screen and (max-width: 1400px) {
  .websiteMain {
    width: 900px;
  }
  /*///////// Home Page - 1400px \\\\\\\\\*/
  .homeBackground {
    width: 900px;
    margin: auto;
    padding: 0;
  }
  /*/// menu - 1400px \\\*/
  .menuContainer {
    width: 900px;
    grid-template-columns: auto 60px 60px;
  }
  .listMenu>a, .selectOptions {
    font-size: 15px;
    background-color: transparent;
  }
  .rtl .listMenu>a {
    font-size: 20px;
  }
  .rtl .listMenu>.footerMenuActive::before, .rtl .listMenu>.menuActive::before, .rtl .listMenu>a::before {
    top: 26px;
  }
  .rtl .listMenu>a::after {
    top: 9px;
  }
  /*///////////////// Languages Selection \\\\\\\\\\\\\\\\\\*/
  .langSelcButton {
    width: 90%;
    padding: 10px 0;
    margin: auto;
    margin-right: 0;
    font-size: 20px;
  }
  /*///// Slideshow \\\\\\*/
  .slideshowContentGrid {
    grid-template-columns: 410px 410px;
  }
  .headingPart1h1 {
    font-size: 30px;
    letter-spacing: 2px;
  }
  .rtl .headingPart1h1 {
    font-size: 45px;
  }
  .headingPart1p1 {
    font-size: 20px;
  }
  .rtl .headingPart1p1 {
    font-size: 23px;
  }
  .websiteSlideshowButton1, .websiteSlideshowButton2 {
    width: 40px;
  }
  .rtl .btnPart1, .rtl .btnPart2 {
    font-size: 18px;
  }
  /*////// Home - About - 1400px \\\\\\*/
  .aboutBackground {
    width: 100%;
    margin: auto;
    padding: 40px 0;
  }
  /*/// Chart \\\*/
  dt {
    width: 900px;
    margin-bottom: 0;
  }
  .filterCountry {
    width: 900px;
  }
  .countrybtn {
    margin: 15px 10px;
  }
  /*/// About Content - 1400px \\\*/
  .headingPart2h1 {
    width: 900px;
    letter-spacing: 1px;
  }
  .rtl .headingPart2h1 {
    font-size: 30px;
  }
  .headingPart2h1::before {
    width: 140px;
    top: 33px;
  }
  .rtl .headingPart2h1::before {
    width: 140px;
    top: 35px;
  }
  .headingPart2h1::after {
    width: 45px;
  }
  .headingPart2p1 {
    width: 900px;
    font-size: 16px;
  }
  .rtl .headingPart2p1 {
    margin-top: 26px;
    font-size: 19px;
  }
  .aboutContent {
    grid-template-columns: 525px 375px;
  }
  .headingPart2h3 {
    font-size: 22px;
  }
  .headingPart2p2 {
    font-size: 18px;
  }
  .rtl .headingPart2p2 {
    margin-top: 15px;
  }
  .btnPart1, .btnPart2 {
    width: 130px;
    height: 42px;
    font-size: 12px;
  }
  /*////// Home - News - 1400px \\\\\\*/
  .newsBackground {
    width: 100%;
    margin: auto;
    padding: 40px 0;
  }
  .homeNewsContent {
    width: 900px;
    margin: auto;
    padding: 0;
  }
  .homeNewsContentPadding {
    padding-top: 40px;
  }
  .headingPart3h1 {
    width: 900px;
  }
  .rtl .headingPart3h1 {
    font-size: 30px;
  }
  .headingPart3h1::before {
    width: 95px;
    top: 32px;
  }
  .rtl .headingPart3h1::before {
    width: 75px;
    top: 34px;
  }
  .headingPart3h1::after {
    width: 35px;
  }
  .rtl .headingPart3h1::after {
    width: 25px;
    margin-top: 8px;
  }
  .headingPart3p1 {
    width: 900px;
    font-size: 16px;
  }
  .rtl .headingPart3p1 {
    margin-top: 63px;
    font-size: 19px;
  }
  .newsContent {
    max-width: 900px;
    padding-bottom: 0;
  }
  .eventsPagePart1, .eventsPagePart2, .eventsPagePart3 {
    width: 275px;
  }
  .eventsPagePart3 {
    margin-left: 24px;
  }
  .eventsPagePart2 {
    margin-left: 13px;
  }
  .paragrafPart1 {
    margin-top: 15px;
  }
  .rtl .paragrafPart1 {
    font-size: 19px;
  }
  .datePart1 {
    margin: 15px 0;
  }
  /*////// Home - Events - 1400px \\\\\\*/
  .headingPart4h1 {
    width: 900px;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .rtl .headingPart4h1 {
    font-size: 22px;
  }
  .headingPart4h1::before {
    width: 80px;
    top: 28px;
  }
  .rtl .headingPart4h1::before {
    width: 80px;
    top: 28px;
  }
  .headingPart4h1::after {
    width: 25px;
    margin-top: 9px;
  }
  .rtl .headingPart4h1::after {
    width: 25px;
    margin-top: 11px;
  }
  .eventsPageContent {
    width: 900px;
  }
  .headingPart4p1 {
    width: 900px;
    font-size: 16px;
  }
  .rtl .headingPart4p1 {
    margin-top: 18px;
    font-size: 19px;
  }
  /*////// Footer - 1400px \\\\\\*/
  .footer {
    width: 100%;
  }
  .footerPanel {
    width: 900px;
  }
  .footerContainer {
    grid-template-columns: 350px 550px;
  }
  .allRightsParagraf, .footerWebsiteMenu, .footerCopyright {
    font-size: 15px;
  }
  .rtl .allRightsParagraf, .rtl .footerWebsiteMenu, .rtl .footerCopyright {
    font-size: 20px;
  }
  .footerPart2 {
    width: 900px;
    height: auto;
    margin: auto;
    padding: 10px 0;
    grid-template-columns: auto auto;
    background-color: #2b2b2b;
  }
  .footerPart2Content1 {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0;
  }
  .footerCopyright {
    max-width: 100%;
    width: 100%;
  }
  .footerPart2Content2 {
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0;
    background-color: #2b2b2b;
  }
  .footerSocialIcons {
    width: 100%;
    height: auto;
    margin: auto;
    margin-top: 0;
  }
  /*////////////// News Page - 1400px \\\\\\\\\*/
  .websiteMainNews {
    width: 900px;
    height: auto;
    padding-bottom: 1px;
  }
  .newsPageContent {
    width: 100%;
    margin: auto;
    padding: 15px 0;
  }
  .newsPageBackground {
    width: 900px;
    margin: auto;
    padding: 0;
  }
  .newsHeadingh1 {
    width: 900px;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .rtl .newsHeadingh1 {
    font-size: 22px;
  }
  .newsHeadingh1::before {
    width: 80px;
    top: 29px;
  }
  .rtl .newsHeadingh1::before {
    width: 60px;
    top: 27px;
  }
  .newsHeadingh1::after {
    width: 25px;
    top: 12px;
  }
  .rtl .newsHeadingh1::after {
    width: 20px;
    top: 8px;
  }
  .newsHeadingp1 {
    width: 900px;
    font-size: 16px;
  }
  /*//// Content 1 - 1400px \\\\*/
  .newsContentPart1 {
    max-width: 900px;
    height: 350px;
    margin-bottom: 60px;
  }
  .newsImageContentPart1 {
    max-width: 900px;
    height: 350px;
    margin: auto;
    padding: 0;
    background-color: transparent;
  }
  .newsImagePart1 {
    width: 450px;
    height: 350px;
  }
  .newsDetailPart1 {
    max-width: 900px;
    margin: auto;
    padding: 0;
  }
  .rtl .newsImagePart1 {
    width: 420px;
  }
  .newsTitlePart1 {
    max-width: 900px;
    width: 450px;
    padding-top: 110px;
    font-size: 20px;
  }
  .newsDatePart1 {
    max-width: 900px;
    width: 450px;
  }
  .newsParagrafPart1 {
    max-width: 900px;
    width: 450px;
    font-size: 18px;
  }
  /*//// Content 2 - 1400px \\\\*/
  .newsContentPart2 {
    width: 100vw;
    max-width: 900px;
    height: 350px;
    margin-bottom: 60px;
  }
  .newsTitlePart2 {
    width: 450px;
    padding-top: 110px;
    font-size: 20px;
  }
  .rtl .newsTitlePart2 {
    padding-left: 30px;
    padding-right: 0;
  }
  .newsDatePart2 {
    max-width: 900px;
    width: 450px;
  }
  .rtl .newsDatePart2 {
    padding-left: 30px;
    padding-right: 0;
  }
  .newsParagrafPart2 {
    max-width: 900px;
    width: 450px;
    font-size: 18px;
  }
  .rtl .newsParagrafPart2 {
    padding-left: 30px;
    padding-right: 0;
  }
  .newsImageContentPart2 {
    max-width: 900px;
    height: 350px;
    margin: auto;
    padding: 0;
  }
  .newsImagePart2 {
    width: 450px;
    height: 350px;
  }
  .websiteMainNews, .newsPageBackground, .newsHeadingh1, .newsHeadingh1::before, .newsHeadingh1::after, .newsHeadingp1, .newsContentPart1, .newsImageContentPart1, .newsImagePart1, .newsDetailPart1, .newsTitlePart1, .newsDatePart1, .newsParagrafPart1, .newsContentPart2, .newsTitlePart2, .newsDatePart2, .newsParagrafPart2, .newsImageContentPart2, .newsImagePart2 {
    transition: 0.3s ease-out;
  }
  /*////////////// Events Page - 1400px \\\\\\\\\*/
  .websiteMainEvents {
    width: 100%;
    min-height: calc(100vh - 427px);
    margin: auto;
    padding: 0;
    padding-top: 20px;
  }
  .eventsPageBackgroundColor {
    min-height: calc(100vh - 432px);
  }
  /*////////////// Announcements Page - 1400px \\\\\\\\\*/
  .announcementsContainer {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
  }
  .announcementsPageTitle {
    width: 900px;
    font-size: 20px;
  }
  .rtl .announcementsPageTitle {
    font-size: 22px;
  }
  .dateOfAnnouncements {
    width: 100%;
  }
  .announcementsTitle {
    width: 100%;
    font-size: 20px;
  }
  .announcementsParagraf {
    width: 100%;
    font-size: 18px;
  }
  .announcementsBtn {
    font-size: 17px;
  }
  .announcementsBtn span::after {
    top: -10px;
    font-size: 31px;
  }
  .rtl .announcementsBtn {
    font-size: 20px;
  }
  .announcementsPageTitle, .dateOfAnnouncements, .announcementsTitle, .announcementsParagraf, .announcementsBtn, .announcementsBtn span::after, .btnDesign3 {
    transition: 0.3s ease-out;
  }
  /*////////////// Contact Us Page - 1400px \\\\\\\\\*/
  .aboutusPageHeader {
    font-size: 20px;
  }
  .rtl .aboutusPageHeader {
    font-size: 22px;
  }
  .aboutusPagetitle {
    font-size: 18px;
  }
  .rtl .aboutusPagetitle {
    font-size: 20px;
  }
  .aboutusPageParagraf {
    font-size: 18px;
  }
  /*////////////// Contact Us Page - 1400px \\\\\\\\\*/
  .contactusPageHeader {
    font-size: 20px;
  }
  .rtl .contactusPageHeader {
    font-size: 22px;
  }
  .getInTouchContainer {
    margin: auto;
  }
  .formFullName {
    display: inline-block;
    width: calc(50% - 15px);
    margin-right: 15px;
  }
  .rtl .formFullName {
    margin-right: 0;
    margin-left: 15px;
  }
  .formMessage {
    width: 97%;
    margin-right: 15px;
  }
  .rtl .formMessage {
    margin-right: 0;
    margin-left: 15px;
  }
  .formFullName, .rtl .formFullName, .rtl .formMessage, .formMessage {
    transition: 0.3s ease-out;
  }
  /*///////////////// Search Page - 1400px \\\\\\\\\\\\\\\\\\*/
  .searchContent {
    width: 900px;
  }
  .searchForm input {
    height: 45px;
    font-size: 20px;
  }
  .iconStyleWebsite {
    padding: 12px;
    font-size: 20px;
  }
}

@media (min-width: 720px) and (max-width: 920px) {
  .websiteMain {
    width: 720px;
  }
  .websiteTitleP {
    font-size: 22px;
  }
  /*////// Home Page - (720 - 920)px \\\\\\*/
  .homeBackground {
    width: 720px;
  }
  /*/// menu - (720 - 920)px \\\*/
  .menuContainer {
    width: 700px;
  }
  .listMenu {
    margin: 0 20px 0 0;
  }
  .rtl .listMenu {
    margin: 0 0 0 20px;
  }
  .listMenu>a, .selectOptions {
    font-size: 14px;
  }
  .rtl .listMenu>a {
    font-size: 18px;
  }
  .listMenu>a:hover::before {
    width: calc(100% + 10px);
  }
  .listMenu>.menuActive::before, .listMenu>.footerMenuActive::before {
    width: calc(100% + 10px);
    top: 20px;
  }
  .centerMenuGrid .listMenu>.menuActive::before, .listMenu>.footerMenuActive::before {
    top: 21px;
  }
  .rtl .listMenu>.footerMenuActive::before, .rtl .listMenu>.menuActive::before, .rtl .listMenu>a::before {
    top: 23px;
    right: -6px;
  }
  .listMenu>a::before {
    top: 20px;
    left: -5px;
  }
  .centerMenuGrid .listMenu>a::before {
    top: 21px;
  }
  .listMenu>.menuActive::after, .listMenu>.footerMenuActive::after {
    width: 40%;
  }
  .listMenu>a::after {
    top: 8px;
  }
  .rtl .listMenu>a::after {
    top: 8px;
  }
  /*///////////////// Languages Selection - (720 - 920)px \\\\\\\\\\\\\\\\\\*/
  .langSelcButton {
    width: 80%;
    padding: 8px 0;
    font-size: 18px;
  }
  /*/// Slideshow - (720 - 920)px \\\*/
  .slideshowContainer {
    grid-template-columns: 30px 660px 30px;
    padding: 0 20px;
  }
  .slideshowContentGrid {
    grid-template-columns: 330px 330px;
  }
  .headingPart1h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .rtl .headingPart1h1 {
    font-size: 35px;
  }
  .headingPart1p1 {
    font-size: 18px;
  }
  .rtl .headingPart1p1 {
    font-size: 20px;
  }
  .websiteSlideshowButton1, .websiteSlideshowButton2 {
    width: 30px;
    margin-top: 0;
  }
  .btnPart1 {
    height: 40px;
  }
  .rtl .btnPart1 {
    width: 135px;
    height: 40px;
    font-size: 17px;
  }
  .slideshowPart2 {
    height: 310px;
  }
  .websiteSlideshowImages {
    padding: 0 1px;
  }
  .contentSlideshow1, .contentSlideshow2 {
    padding: 0 2px;
  }
  /*////// Home - About Us - (720 - 920)px \\\\\\*/
  /*/// Chart \\\*/
  dt {
    width: 720px;
    font-size: 20px;
  }
  #chartTable {
    width: 540px;
  }
  #chartTable tr, #chartTable th, #chartTable td {
    width: 180px;
  }
  #chartTable .Bar {
    width: 50px;
  }
  #chartTable .disability {
    left: 10px;
  }
  #chartTable .careGiver {
    left: 65px;
  }
  #chartTable .familyCare {
    left: 120px;
  }
  #chartTable #q2 {
    left: 180px;
  }
  #chartTable #q3 {
    left: 360px;
  }
  #filterListCharts .filterListChart {
    width: 538px;
  }
  #chartTable thead tr {
    width: 80px;
  }
  #chartTable thead th {
    padding-left: 4px;
  }
  #chartTable thead th.disability {
    font-size: 10px;
  }
  #chartTable thead th.careGiver {
    top: 5px;
    font-size: 10px;
  }
  #chartTable thead th.familyCare {
    top: 10px;
    font-size: 10px;
  }
  #filterListCharts .filterListChart p {
    font-size: 12px;
  }
  #filterListCharts {
    width: 540px;
    font-size: 10px;
  }
  /*/// About Content (720 - 920)px \\\*/
  .aboutBackground {
    padding-top: 40px;
  }
  .headingPart2h1 {
    width: 720px;
    font-size: 20px;
  }
  .rtl .headingPart2h1 {
    font-size: 25px;
  }
  .headingPart2h1::before {
    width: 110px;
    top: 27px;
  }
  .rtl .headingPart2h1::before {
    width: 115px;
    top: 31px;
  }
  .headingPart2h1::after {
    width: 40px;
  }
  .rtl .headingPart2h1::after {
    width: 35px;
  }
  .headingPart2p1 {
    width: 720px;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  .rtl .headingPart2p1 {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 17px;
  }
  .aboutContent {
    grid-template-columns: 360px 360px;
  }
  .headingPart2h3 {
    font-size: 18px;
  }
  .rtl .headingPart2h3 {
    width: 95%;
    height: 70px;
  }
  .headingPart2p2 {
    font-size: 15px;
  }
  .rtl .headingPart2p2 {
    width: 90%;
    height: 85px;
    top: 10px;
  }
  .btnPart2 {
    width: 110px;
    height: 35px;
    font-size: 11px;
  }
  .rtl .btnPart2 {
    margin-top: 15px;
    font-size: 17px;
  }
  /*////// Home - News - (720 - 920)px \\\\\\*/
  .newsBackground {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .homeNewsContent {
    width: 720px;
  }
  .homeNewsContentPadding {
    padding-bottom: 45px;
    padding-top: 35px;
  }
  .headingPart3h1 {
    width: 720px;
    top: 0;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .rtl .headingPart3h1 {
    font-size: 25px;
  }
  .headingPart3h1::before {
    width: 75px;
    top: 27px;
  }
  .rtl .headingPart3h1::before {
    width: 60px;
    top: 29px;
  }
  .headingPart3h1::after {
    width: 30px;
  }
  .rtl .headingPart3h1::after {
    width: 20px;
    margin-top: 7px;
  }
  .headingPart3p1 {
    width: 720px;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  .rtl .headingPart3p1 {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 17px;
  }
  .newsContent {
    max-width: 720px;
    padding-bottom: 0;
  }
  .eventsPagePart1, .eventsPagePart2, .eventsPagePart3 {
    width: 235px;
  }
  .eventsPagePart2 {
    margin-left: 4px;
  }
  .eventsPagePart3 {
    margin-left: 7px;
  }
  .paragrafPart1 {
    margin-top: 8px;
    font-size: 15px;
  }
  .rtl .paragrafPart1 {
    font-size: 17px;
  }
  .datePart1 {
    margin: 5px 0;
  }
  /*////// Home - Events - (720 - 920)px \\\\\\*/
  .eventsBackground {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .eventsPageContent {
    width: 720px;
  }
  .headingPart4h1 {
    width: 720px;
  }
  .rtl .headingPart4h1 {
    font-size: 25px;
  }
  .rtl .headingPart4h1::before {
    width: 95px;
    top: 31px;
  }
  .rtl .headingPart4h1::after {
    width: 30px;
    margin-top: 11px;
  }
  .headingPart4p1 {
    width: 720px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  .rtl .headingPart4p1 {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 17px;
  }
  /*////// Footer - (720 - 920)px \\\\\\*/
  .footer {
    width: 100%;
  }
  .footerPanel {
    width: 720px;
  }
  .footerContainer {
    grid-template-columns: 240px 480px;
  }
  .allRightsParagraf, .footerWebsiteMenu, .footerCopyright {
    font-size: 14px;
  }
  .rtl .allRightsParagraf, .rtl .footerWebsiteMenu, .rtl .footerCopyright {
    font-size: 18px;
  }
  .footerCopyright {
    max-width: 100%;
    background-color: #2b2b2b;
  }
  .footerListMenu>a::before {
    top: 22px;
  }
  .rtl .footerListMenu>.footerMenuActive::before, .rtl .footerListMenu>a::before {
    top: 23px;
  }
  .footerPart2 {
    width: 720px;
    height: auto;
    margin: auto;
    padding: 10px 0;
    grid-template-columns: auto auto;
  }
  .headingPart4h1, .listMenu>a {
    transition: 0.3s ease-out;
  }
  /*////////////// News Page - (720 - 920)px \\\\\\\\\*/
  .websiteMainNews {
    width: 720px;
    height: auto;
  }
  .newsPageContent {
    padding: 10px 0;
  }
  .newsPageBackground {
    width: 720px;
  }
  .newsHeadingh1 {
    width: 720px;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .newsHeadingh1::before {
    width: 75px;
    top: 27px;
  }
  .rtl .newsHeadingh1::before {
    width: 55px;
    top: 27px;
  }
  .newsHeadingh1::after {
    width: 25px;
    top: 9px;
  }
  .rtl .newsHeadingh1::after {
    width: 15px;
    top: 5px;
  }
  .newsHeadingp1 {
    width: 720px;
    font-size: 15px;
  }
  .rtl .newsHeadingp1 {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 17px;
  }
  /*//// Content 1 - (720 - 920)px \\\\*/
  .newsContentPart1 {
    max-width: 720px;
    height: 300px;
    margin-bottom: 45px;
  }
  .newsImageContentPart1 {
    max-width: 720px;
    height: 300px;
  }
  .newsImagePart1 {
    width: 360px;
    height: 300px;
  }
  .rtl .newsImagePart1 {
    width: 330px;
  }
  .newsDetailPart1 {
    max-width: 720px;
  }
  .newsTitlePart1 {
    max-width: 720px;
    width: 350px;
    padding-top: 110px;
    font-size: 20px;
  }
  .newsDatePart1 {
    max-width: 720px;
    width: 350px;
  }
  .newsParagrafPart1 {
    max-width: 720px;
    width: 350px;
    font-size: 18px;
  }
  /*//// Content 2 - (720 - 920)px \\\\*/
  .newsContentPart2 {
    width: 100vw;
    max-width: 720px;
    height: 300px;
    margin-bottom: 45px;
  }
  .newsTitlePart2 {
    width: 350px;
    padding-top: 100px;
    font-size: 20px;
  }
  .newsDatePart2 {
    max-width: 720px;
    width: 350px;
  }
  .newsParagrafPart2 {
    max-width: 720px;
    width: 350px;
    font-size: 18px;
  }
  .newsImageContentPart2 {
    max-width: 720px;
    height: 300px;
  }
  .newsImagePart2 {
    width: 360px;
    height: 300px;
  }
  .newsTitlePart2, .newsDatePart2, .newsParagrafPart2, .newsImagePart2 {
    transition: 0.3s ease-out;
  }
  /*////////////// Events Page - (720 - 920)px \\\\\\\\\*/
  .eventsPageBackgroundColor {
    min-height: calc(100vh - 427px);
  }
  /*////////////// Announcements Page - (720 - 920)px \\\\\\\\\*/
  .announcementsPageTitle {
    width: 720px;
  }
  .announcementsParagraf {
    font-size: 18px;
  }
  .announcementsBtn {
    font-size: 16px;
  }
  .announcementsBtn span::after {
    top: -9px;
    font-size: 30px;
  }
  .btnDesign3 {
    transition: 0.3s ease-out;
  }
  /*////////////// Contact Us Page - (720 - 920)px \\\\\\\\\*/
  .rtl .formFullName {
    font-size: 19px;
  }
  .rtl .formMessage {
    font-size: 19px;
  }
  .rtl .formMessage {
    font-size: 19px;
  }
  .rtl .sendBtnContactPage {
    width: 95px;
    height: 40px;
    padding: 0;
    font-size: 19px;
  }
  .contactusMap1 {
    width: 360px;
    border-radius: 3px;
  }
  .rtl .formFullName, .rtl .formMessage, .contactusMap1 {
    transition: 0.3s ease-out;
  }
  /*///////////////// Search Page - (720 - 920)px \\\\\\\\\\\\\\\\\\*/
  .searchContent {
    width: 720px;
  }
  .searchForm input {
    height: 40px;
    font-size: 18px;
  }
  .iconStyleWebsite {
    padding: 10px;
    font-size: 18px;
  }
}

@media (max-width: 720px) {
  .websiteMain {
    display: block;
    height: auto;
    width: 100%;
  }
  /*////// Home Page - 720px \\\\\\*/
  .homeBackground {
    width: calc(100% - 40px);
    margin: auto;
    padding: 0;
  }
  /*////// menu - 720px \\\\\\*/
  .websiteTitleP {
    width: 100%;
    height: auto;
    font-size: 20px;
  }
  .mobileMenuContainer {
    width: calc(100% - 40px);
    margin: auto;
  }
  .menuContainer {
    width: 100%;
    grid-template-columns: auto 60px 60px;
    padding: 15px 0;
  }
  .websiteMenu2 .menuContainer {
    width: 100% !important;
  }
  .searchButton {
    margin-left: 0;
    margin-right: auto;
  }
  .rtl .searchButton {
    margin-right: 0;
    margin-left: auto;
  }
  .websiteMenu {
    position: absolute;
    display: block;
    height: 0;
    margin-left: 0;
    top: 64px;
    left: 0;
    border-top: 1px solid #eeeeee94;
    overflow: hidden;
  }
  .websiteMenuShow {
    height: auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .websiteMenu2 .websiteMenuShow {
    background-color: #000;
  }
  .listMenu {
    display: block;
    width: 100%;
    height: 40px;
    padding: 10px 20px;
    text-align: left;
  }
  .rtl .listMenu {
    text-align: right;
  }
  .listMenu>a, .selectOptions {
    font-size: 14px;
  }
  .websiteMenu2 .listMenu a {
    color: #fff;
  }
  .listMenu>a:hover::before, .listMenu>.menuActive::before, .listMenu>a::before {
    display: none;
  }
  .listMenu>.menuActive::after {
    width: 4px;
    height: 22px;
    top: -20px;
    margin-left: -6px;
  }
  .websiteMenu2 .listMenu>.menuActive::after {
    background-color: #fff;
  }
  .websiteMenu2 .listMenu>a::after {
    top: -20px;
    background-color: #1985ae;
  }
  .rtl .listMenu>.menuActive::after {
    top: -23px;
    margin-right: -6px;
  }
  .toggleMenuContainer {
    margin: auto;
    margin-left: 20px;
  }
  .rtl .toggleMenuContainer {
    margin: auto;
    margin-left: auto;
    margin-right: 20px;
  }
  .toogleMenu {
    position: absolute;
    display: block;
    height: 40px;
    right: auto;
  }
  /*///////////////// Languages Selection 720px \\\\\\\\\\\\\\\\\\*/
  .langSelcButton {
    width: 75%;
    padding: 6px 0;
    margin-left: 0;
  }
  .websiteLangStyle2 {
    right: 26px;
  }
  .rtl .websiteLangStyle2 {
    margin-top: 75px;
    left: 26px;
    font-size: 18px;
  }
  .rtl .websiteLangStyle2::before {
    top: -18px;
    left: 5px;
    right: auto;
  }
  /*////// Slideshow - 720px \\\\\\*/
  .slideshowContainer {
    padding-bottom: 0;
  }
  .websiteSlideshowButton1, .websiteSlideshowButton2 {
    width: 20px;
    margin-top: 0;
  }
  .slideshowPart2 {
    height: auto;
  }
  .slideshowContentGrid {
    height: auto;
    grid-template-columns: auto;
  }
  .contentSlideshow1, .contentSlideshow2 {
    padding: 0;
  }
  .headingPart1h1 {
    font-size: 25px;
    text-align: center;
  }
  .headingPart1p1 {
    margin-top: 10px;
    top: 0;
    font-size: 17px;
    text-align: center;
  }
  .btnPart1 {
    width: 120px;
    height: 40px;
    margin: 10px 0;
    top: 0;
  }
  .websiteSlideshowImages {
    padding: 0;
    border-radius: 2px;
  }
  /*////// About Us - 720px \\\\\\*/
  /*/// Chart - 720px \\\*/
  dt {
    width: 100%;
    font-size: 18px;
  }
  dl {
    width: calc(100% - 40px);
    margin: auto;
  }
  .genderFilter {
    padding-bottom: 12px;
  }
  #chartTable {
    width: calc(100% - 200px);
    height: 260px;
  }
  #filterListCharts {
    width: 100%;
  }
  #filterListCharts .filterListChart {
    width: 100%;
    height: 51px !important;
  }
  #chartTable tbody tr {
    height: 260px;
  }
  #chartTable .disability {
    left: 2px;
  }
  #chartTable .careGiver {
    left: 38px;
  }
  #chartTable .familyCare {
    left: 74px;
  }
  #chartTable .Bar {
    width: 35px;
  }
  #chartTable tr, #chartTable th, #chartTable td {
    width: 112px;
  }
  #chartTable #q2 {
    left: 112px;
  }
  #chartTable #q3 {
    left: 224px;
  }
  #chartTable thead tr {
    width: 92px;
    left: 100%;
  }
  #chartTable thead th {
    width: 100%;
    padding: 3px;
  }
  #chartTable thead th.disability, #chartTable thead th.careGiver, #chartTable thead th.familyCare {
    font-size: 12px;
    line-height: 1;
  }
  #filterListCharts .filterListChart p {
    font-size: 12px;
  }
  #chartTable tbody th {
    font-size: 12px;
  }
  .genderButton {
    font-size: 12px;
  }
  /*/// Content - 720px \\\*/
  .aboutBackground {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .contentFlex {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    height: auto;
    margin: auto;
  }
  .headingPart2h1 {
    width: 100%;
    font-size: 22px;
  }
  .headingPart2h1::before {
    width: 120px;
    top: 31px;
  }
  .headingPart2h1::after {
    width: 40px;
  }
  .headingPart2p1 {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  .rtl .headingPart2p1 {
    margin-top: 25px;
  }
  .aboutContent {
    grid-template-rows: auto;
    grid-template-columns: none;
  }
  .headingPart2h3 {
    width: 100%;
    top: 0;
    font-size: 18px;
  }
  .rtl .headingPart2h3 {
    width: 100%;
    height: auto;
  }
  .headingPart2p2 {
    width: 100%;
    padding-top: 5px;
    top: 0;
    font-size: 15px;
  }
  .rtl .headingPart2p2 {
    width: 100%;
    height: auto;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  .btnPart2 {
    height: 40px;
    margin-top: 5px;
    margin-bottom: 55px;
    top: 0;
  }
  .rtl .btnPart2 {
    width: 110px;
    font-size: 16px;
  }
  /*////// Home - News - 720px \\\\\\*/
  .newsBackground {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .homeNewsContent {
    width: calc(100% - 40px);
    margin: auto;
    padding: 0;
  }
  .headingPart3h1 {
    width: 100%;
    margin: auto;
    top: 0;
    font-size: 22px;
    letter-spacing: 1px;
  }
  .headingPart3h1::before {
    width: 75px;
    top: 29px;
  }
  .headingPart3h1::after {
    width: 20px;
  }
  .headingPart3p1 {
    width: 100%;
    height: auto;
    margin: 40px auto;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  .rtl .headingPart3p1 {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 19px;
  }
  .newsContent {
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: auto;
    margin: auto;
    padding-bottom: 0;
  }
  .eventsPagePart1, .eventsPagePart2, .eventsPagePart3 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
    padding: 10px;
  }
  .eventsPagePart3 {
    margin-bottom: 0;
  }
  .eventsImageContent1 {
    height: 75%;
  }
  .paragrafPart1 {
    margin-top: 8px;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
  }
  .rtl .paragrafPart1 {
    height: auto;
    font-size: 18px;
  }
  .datePart1 {
    margin-top: 4px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
  }
  /*////// Home - Events - 720px \\\\\\*/
  .eventsBackground {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 40px;
  }
  .eventsPageContent {
    width: 100%;
    grid-template-columns: none;
    grid-template-rows: auto;
    margin: auto;
  }
  .headingPart4h1 {
    width: calc(100% - 40px);
    margin: auto;
    letter-spacing: 1px;
    font-size: 22px;
  }
  .rtl .headingPart4h1 {
    font-size: 22px;
  }
  .headingPart4h1::before {
    width: 80px;
    top: 29px;
  }
  .rtl .headingPart4h1::before {
    width: 80px;
    top: 27px;
  }
  .headingPart4h1::after {
    width: 25px;
    margin-top: 9px;
  }
  .rtl .headingPart4h1::after {
    width: 25px;
    margin-top: 8px;
  }
  .headingPart4p1 {
    width: calc(100% - 40px);
    margin: 40px auto;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  /*////// Footer - 720px \\\\\\*/
  .footer {
    width: 100%;
    height: 125px;
    margin: auto;
    padding: 0;
  }
  /*/// Content 1 - 720px \\\*/
  .footerPanel {
    width: 100%;
  }
  .footerContainer {
    height: auto;
    grid-template-columns: 100%;
  }
  .footerMenuContainer {
    display: none;
    margin-top: 0;
  }
  .imageColumn1 {
    margin: 10px auto;
  }
  .rtl .imageColumn1 {
    margin-right: auto;
  }
  .footerListMenu>a::before {
    top: 22px;
  }
  .footerMenuActive::before {
    width: calc(100% + 10px);
    top: 21px;
  }
  .footerMenuActive::after {
    width: 5px;
    height: 70%;
    margin: auto;
    top: 0;
    left: -15px;
    bottom: 0;
  }
  .allRightsParagraf, .footerWebsiteMenu, .footerCopyright {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  /*/// Content 2 - 720px \\\*/
  .footerCopyright {
    margin: -0.5px auto;
    margin-bottom: 0;
    padding: 0;
  }
  .footerPart2 {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 11.5px auto;
    margin-bottom: 0;
    grid-template-columns: 100%;
  }
  .rtl .footerPart2 {
    margin-top: 0px;
  }
  .footerPart2Content1 {
    height: auto;
    padding: 5px 0;
    align-content: center;
  }
  .footerPart2Content2 {
    height: auto;
  }
  .footerSocialIcons {
    margin: 2px auto;
    text-align: center;
  }
  .rtl .footerSocialIcons {
    text-align: center;
  }
  .footerSocial:nth-child(1) {
    margin-left: 0;
  }
  .rtl .footerSocial:nth-child(1) {
    margin-left: 25px;
  }
  .rtl .footerSocial:nth-child(3) {
    margin-left: 0;
  }
  .footerPart2 {
    transition: 0.3s ease-out;
  }
  /*////////////// News Page - 720px \\\\\\\\\*/
  .websiteMainNews {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .newsPageBackground {
    width: calc(100% - 40px);
    margin: auto;
    padding: 0;
  }
  .newsHeadingh1 {
    width: 100%;
    margin: auto;
    padding-top: 0;
    text-align: center;
    font-size: 22px;
    letter-spacing: 1px;
  }
  .newsHeadingh1::before {
    width: 75px;
    top: 30px;
  }
  .rtl .newsHeadingh1::before {
    width: 55px;
    top: 25px;
  }
  .newsHeadingh1::after {
    width: 20px;
    margin: auto;
    top: 9px;
    left: 0;
  }
  .rtl .newsHeadingh1::after {
    width: 15px;
    top: 6px;
  }
  .newsHeadingp1 {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 15px;
  }
  .rtl .newsHeadingp1 {
    font-size: 18px;
  }
  /*/// Content 1 - 720px \\\*/
  .newsContentPart1 {
    width: calc(100% - 40px);
    height: auto;
    grid-template-columns: auto;
    margin: auto;
    margin-bottom: 45px;
  }
  .newsImageContentPart1 {
    height: auto;
  }
  .rtl .newsImageContentPart1 {
    margin: 0;
    padding: 0;
  }
  .newsImagePart1 {
    width: 100%;
    height: auto;
    margin: auto;
    border-radius: 2px;
  }
  .rtl .newsImagePart1 {
    width: 100%;
  }
  .newsDetailPart1 {
    margin: 0;
    padding: 0;
  }
  .newsTitlePart1 {
    width: 100%;
    padding-top: 20px;
    padding-left: 0;
    font-size: 18px;
  }
  .newsDatePart1 {
    width: 100%;
    padding-left: 0;
    font-size: 12px;
  }
  .newsParagrafPart1 {
    width: 100%;
    padding-left: 0;
    font-size: 15px;
  }
  .rtl .newsParagrafPart1 {
    font-size: 18px;
  }
  /*/// Content 2 - 720px \\\*/
  .newsContentPart2 {
    display: none;
  }
  /*/// Content 3 - 720px \\\*/
  .newsContentPart3 {
    position: relative;
    display: grid;
    width: calc(100% - 40px);
    height: auto;
    margin: auto;
    padding-bottom: 40px;
    grid-template-columns: auto;
    transition: 0.3s ease-out;
  }
  /*////////////// Events Page - 720px \\\\\\\\\\\\\\*/
  .websiteMainEvents {
    padding-top: 40px;
    transition: 0.3s ease-out;
  }
  .rtl .headingPart4p1 {
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 18px;
    transition: 0.3s ease-out;
  }
  /*////////////// Announcements Page - 720px \\\\\\\\\*/
  .announcementsPageTitle {
    width: 100%;
    font-size: 22px;
  }
  .announcementsContainer {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    border-radius: 4px;
  }
  .dateOfAnnouncements {
    font-size: 12px;
  }
  .announcementsTitle {
    font-size: 18px;
  }
  .rtl .announcementsTitle {
    font-size: 18px;
  }
  .announcementsParagraf {
    font-size: 15px;
  }
  .rtl .announcementsParagraf {
    font-size: 16px;
  }
  .announcementsBtn {
    padding-right: 35px;
    font-size: 12px;
  }
  .rtl .announcementsBtn {
    font-size: 13px;
    padding-left: 40px;
  }
  .announcementsBtn span::after {
    top: -8px;
    font-size: 25px;
  }
  .rtl .announcementsBtn span::after {
    width: 100%;
    margin-right: 40px;
    top: -7px;
    left: -90px;
    font-size: 25px;
  }
  .rtl .announcementsTitle, .rtl .announcementsParagraf, .rtl .announcementsBtn, .rtl .announcementsBtn span::after {
    transition: 0.3s ease-out;
  }
  /*////////////// About Us Page - 720px \\\\\\\\\\\\\\*/
  .aboutusPage {
    width: calc(100% - 40px);
    margin: 40px auto;
  }
  .aboutusPageHeader {
    font-size: 20px;
  }
  .rtl .aboutusPageHeader {
    font-size: 25px;
  }
  .aboutusPagetitle {
    font-size: 18px;
    font-weight: 900;
  }
  .rtl .aboutusPagetitle {
    font-size: 22px;
  }
  .aboutusPageParagraf {
    font-size: 17px;
    line-height: 25px;
  }
  .aboutusPage, .rtl .aboutusPageHeader, .rtl .aboutusPagetitle, .aboutusPageParagraf {
    transition: 0.3s ease-out;
  }
  /*////////////// Contact Us Page - 720px \\\\\\\\\\\\\\*/
  .getInTouchContainer {
    position: relative;
    display: block;
    width: calc(100% - 50px);
    height: auto;
    margin: auto;
    top: 14px;
    left: 0;
    right: 0;
    padding: 25px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.1);
  }
  .contactusPageHeader {
    font-size: 18px;
  }
  .rtl .contactusPageHeader {
    font-size: 19px;
  }
  .formFullName {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .rtl .formFullName, .rtl .formMessage {
    font-size: 18px;
  }
  .formMessage {
    width: 100%;
    font-size: 14px;
  }
  .sendBtnContactPage {
    width: 105px;
    height: 40px;
    padding: auto;
    font-size: 14px;
  }
  .rtl .sendBtnContactPage {
    width: 100px;
    font-size: 18px;
    padding: 0;
  }
  .contactusMobile {
    grid-template-rows: calc(100% / 2) calc(100% / 2);
  }
  .contactusContentGrid {
    grid-template-columns: none;
  }
  .contactusMap1 {
    display: none;
  }
  .contactusMap2 {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    margin-top: 20px;
    border: none;
    border-radius: 3px;
  }
  .getInTouchContainer, .formMessage, .contactusMobile, .contactusContentGrid, .sendBtnContactPage, .contactusPageHeader, .contactusMap2 {
    transition: 0.3s ease-out;
  }
  /*///////////////// Search Page - 720px \\\\\\\\\\\\\\\\\\*/
  .searchContent {
    width: calc(100% - 40px);
    min-height: calc(100vh - 375px);
    margin: 50px auto;
  }
  .searchForm input {
    height: 35px;
    font-size: 16px;
  }
  .iconStyleWebsite {
    padding: 8px;
    font-size: 18px;
  }
}

@media (max-width: 580px) {
  /*////// About Us - 580px \\\\\\*/
  /*/// Chart - 580px \\\*/
  #chartTable {
    height: 180px;
  }
  #chartTable tbody tr {
    height: 180px;
  }
  #filterListCharts {
    height: 180px;
  }
  #filterListCharts .filterListChart {
    height: 35px !important;
  }
  #chartTable tbody th {
    bottom: -20px;
  }
  #chartTable thead th {
    border-left: 15px solid;
  }
  #chartTable tr, #chartTable th, #chartTable td {
    width: 83px;
  }
  #chartTable .Bar {
    width: 25px;
  }
  #chartTable .careGiver {
    left: 29px;
  }
  #chartTable .familyCare {
    left: 56px;
  }
  #chartTable #q2 {
    left: 83px;
  }
  #chartTable #q3 {
    left: 166px;
  }
}

@media (max-width: 490px) {
  #chartTable .Bar {
    width: 20px;
  }
  #chartTable .careGiver {
    left: 23px;
  }
  #chartTable .familyCare {
    left: 44px;
  }
  #chartTable tr, #chartTable th, #chartTable td {
    width: 65px;
  }
  #chartTable #q2 {
    left: 64px;
  }
  #chartTable #q3 {
    left: 128px;
  }
  #chartTable tbody th {
    font-size: 10px;
    bottom: -15px;
  }
  #chartTable {
    height: 180px;
    top: 80px;
  }
  #chartTable thead tr {
    width: 92px;
    top: -85px;
    left: 0;
  }
  /* #filterListCharts {
    left: -45px;
  } */
}

@media (max-width: 400px) {
  /*///// Website Title - 400px \\\\\\*/
  .websiteTitleP {
    font-size: 15px;
  }
  .menuLogo {
    width: 70px;
  }
  /*///// Home Page - 400px \\\\\\*/
  .headingPart1h1 {
    font-size: 28px;
  }
  .headingPart1p1 {
    margin-bottom: 15px;
    font-size: 15px;
  }
  /*///// Home - About - 400px \\\\\\*/
  dt {
    font-size: 15px;
  }
  .genderFilter {
    padding-bottom: 5px;
  }
  .genderButton {
    margin-left: 10px;
    padding: 12px;
    font-size: 12px;
  }
  .text {
    width: 70px;
    font-size: 12px;
  }
  .chartPercentage::after {
    width: calc(100% - 18px);
    height: 80%;
  }
  .chartPercentage:nth-child(2)::after {
    width: calc(100% - 40px);
  }
  .chartPercentage:nth-child(3)::after {
    width: calc(100% - 120px);
  }
  .chartPercentage {
    width: 70%;
    height: 35px;
    margin-left: 80px;
  }
  .countrybtn {
    margin: 5px 0;
    padding: 2px 12px;
    font-size: 12px;
  }
  /*/// About Content \\\*/
  .headingPart2h1 {
    margin-top: 15px;
    font-size: 15px;
  }
  .headingPart2h1::before {
    width: 85px;
    top: 22px;
  }
  .headingPart2h1::after {
    width: 30px;
  }
  .headingPart2p1 {
    font-size: 14px;
  }
  .headingPart2h3 {
    font-size: 15px;
  }
  .headingPart2p2 {
    font-size: 14px;
  }
  .btnPart2 {
    width: 110px;
    height: 35px;
    margin-bottom: 20px;
  }
  .imagePart2 {
    box-shadow: 0px 0px 20px -7px #c1c1c1b0;
  }
  /*///// Home - News - 400px \\\\\\*/
  .newsBackground {
    padding-top: 30px;
  }
  .homeNewsContentPadding {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .headingPart3h1 {
    font-size: 15px;
  }
  .headingPart3h1::before {
    width: 60px;
    top: 22px;
  }
  .headingPart3p1 {
    font-size: 14px;
  }
  /*///// Home - Events - 400px \\\\\\*/
  .headingPart4h1 {
    font-size: 15px;
  }
  .headingPart4h1::before {
    width: 60px;
    top: 21px;
  }
  .headingPart4h1::after {
    width: 20px;
    margin-top: 8px;
  }
  .headingPart4p1 {
    font-size: 14px;
  }
  /*///// News Page - 400px \\\\\\*/
  .websiteMainNews {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .newsHeadingh1 {
    font-size: 15px;
  }
  .newsHeadingh1::before {
    width: 60px;
    top: 22px;
  }
  .newsHeadingp1 {
    font-size: 14px;
  }
  .newsTitlePart1 {
    padding-top: 15px;
    font-size: 15px;
  }
  .newsParagrafPart1 {
    padding-top: 15px;
    font-size: 14px;
  }
  /*///// Events Page - 400px \\\\\\*/
  .websiteMainEvents {
    padding-top: 30px;
  }
  /*///// Announcements Page - 400px \\\\\\*/
  .announcementsPageTitle {
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 15px;
  }
  .announcementsTitle {
    font-size: 15px;
  }
  .announcementsParagraf {
    font-size: 14px;
  }
  /*///// About us Page - 400px \\\\\\*/
  .aboutusPageHeader {
    font-size: 15px;
  }
  .aboutusPagetitle {
    font-size: 14px;
  }
  .aboutusPageParagraf {
    font-size: 14px;
  }
  /*///// Contact us Page - 400px \\\\\\*/
  .contactusContentGrid {
    padding: 70px 0;
    padding-top: 40px;
  }
  .contactusPageHeader {
    padding-bottom: 25px;
    font-size: 15px;
  }
  /*///////////////// Search Page - 400px \\\\\\\\\\\\\\\\\\*/
  .searchContent {
    min-height: calc(100vh - 370px);
  }
}

@media (max-width:360px) {
  .rtl .announcementsBtn span::after {
    width: 100%;
    margin-right: 40px;
  }
  /*////// About Us - 360px \\\\\\*/
  /*/// Chart - 360px \\\*/
  #chartTable {
    width: calc(100% - 100px);
  }
}

/*//////////////////////////    Content Managment System - CMS    \\\\\\\\\\\\\\\\\\\\\\\\*/

.cmsImage {
  max-width: 600px !important;
  width: 100% !important;
  height: 400px !important;
  border-radius: 0 !important;
}

.cmsImage img {
  border-radius: 0 !important;
}