/* ====== FONTS ====== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
@import url(../vendors/bootstrapv5.0/css/bootstrap.min.css);
@import url(../vendors/aos/aos.css);

@font-face {
  font-family: DimaNotoBold;
  src: url(../fonts/DimaNotoBold.woff) format("woff");
}

/* ====== Bootstrap 5 ====== */
/* ====== Animate On Scroll library ====== */
/* ====== Color Variables ====== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: #013B82;
}

::-webkit-scrollbar-thumb:hover {
  background: #011C2A;
}

/* ====== General Version ====== */
* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html,
body {
  background-color: #f0f0f0;
  overflow-x: hidden;
}

#scroll-line {
  position: fixed;
  top: 0px;
  background: linear-gradient(45deg, #013B82, #37A755);
  height: 5px;
  z-index: 999;
  border-radius: 0px 0px 5px 5px;
  transition-duration: 0.3s;
}

.itc__header {
  background-color: #ffffff;
  padding: 30px 0;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 888;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header {
    padding: 10px 0;
  }
}

.itc__header_language {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__header_language {
    position: absolute;
    top: -22px;
    right: 8px;
    width: 100%;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header_language {
    position: absolute;
    top: 17px;
    right: 73px;
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header_language {
    position: absolute;
    top: -15px;
    right: 8px;
    width: 100%;
  }
}

.itc__header_language label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #013B82;
  line-height: 1;
}

.itc__header_language .dropdown button {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #37A755;
  background-color: #ffffff;
  border: none;
}

.itc__header_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -24px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__header_main {
    margin-top: 0;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header_main {
    margin-top: 0;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header_main {
    margin-top: 0;
  }
}

.itc__header_main img {
  height: 100px;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__header_main img {
    height: 60px;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header_main img {
    height: 60px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header_main img {
    height: 60px;
  }
}

.itc__header_main_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__header_main_nav ul {
    gap: 35px;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header_main_nav ul {
    position: fixed;
    display: none;
    flex-direction: column;
    width: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #fff;
    padding-bottom: 30px;
    border-radius: 0 0 20px 20px;
    gap: 25px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header_main_nav ul {
    position: fixed;
    display: none;
    flex-direction: column;
    width: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #fff;
    padding-bottom: 30px;
    border-radius: 0 0 20px 20px;
    gap: 25px;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header_main_nav ul.opened {
    display: flex;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header_main_nav ul.opened {
    display: flex;
  }
}

.itc__header_main_nav ul li {
  position: relative;
  transition-duration: 0.3s;
}

.itc__header_main_nav ul li a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #013B82;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__header_main_nav ul li a {
    font-size: 15px;
  }
}

.itc__header_main_nav ul li a.dwn {
  background-color: #013B82;
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  transition-duration: 0.3s;
}

.itc__header_main_nav ul li a.dwn:hover {
  background-color: #37A755;
}

.itc__header_main_nav ul li a.dwn img {
  height: 15px;
  margin-inline-start: 10px;
}

.itc__header_main_nav ul li:after {
  content: "";
  /*background-image: url(../media/logo/itc.svg);*/
  position: absolute;
  height: 24px;
  width: 24px;
  background-size: contain;
  left: 100%;
  transition-duration: 0.3s;
  opacity: 0;
  transform: scale(0.5);
}

.itc__header_main_nav ul li:not(:last-child):hover {
  box-shadow: 0px 2px 0 #013B82;
}

.itc__header_main_nav ul li:not(:last-child):hover:after {
  left: -30px;
  opacity: 1;
  transform: scale(1);
}

.itc__header_main_nav_toggle {
  display: none;
  height: 45px;
  width: 45px;
  background: transparent;
  border: none;
}

.itc__header_main_nav_toggle img {
  height: 30px !important;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__header_main_nav_toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 500px) {
  .itc__header_main_nav_toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.itc__header.mini-header .itc__header_language {
  opacity: 0;
  user-select: none;
  z-index: -1;
}

@media only screen and (min-width: 1024px) and (min-width: 800px) {
  .itc__header.mini-header {
    padding: 10px 0;
  }

  .itc__header.mini-header img {
    height: 60px;
  }
}

@media only screen and (min-width: 800px) and (min-width: 500px) {
  .itc__header.mini-header {
    padding: 10px 0;
  }

  .itc__header.mini-header img {
    height: 60px;
  }
}

@media only screen and (min-width: 500px) {
  .itc__header.mini-header {
    padding: 10px 0;
  }

  .itc__header.mini-header img {
    height: 60px;
  }
}

.itc__hero {
  height: calc(100vh - 160px);
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 160px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}

@media only screen and (max-width: 500px) {
  .itc__hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}

.itc__hero>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.itc__hero:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 152, 71, 0.3);
  z-index: -1;
}

.itc__hero h1 {
  color: #ffffff;
  font-weight: 200;
  font-size: 120px;
  text-align: center;
  margin: 15px 0;
  line-height: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero h1 {
    font-size: 70px;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero h1 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__hero h1 {
    font-size: 40px;
  }
}

.itc__hero h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 90px;
  text-align: center;
  margin: 0;
  line-height: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero h2 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero h2 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__hero h2 {
    font-size: 30px;
  }
}

.itc__hero p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin: 20px auto;
  line-height: 22px;
  max-width: 50%;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .itc__hero p {
    max-width: 100%;
  }
}

.itc__hero a {
  background-color: #013B82;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  margin: 15px auto;
  transition-duration: 0.3s;
}

.itc__hero a:hover {
  background-color: #37A755;
}

.itc__hero img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.itc__sub_hero {
  padding: 80px 0;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sub_hero {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sub_hero {
    padding: 40px 0;
  }
}

.itc__sub_hero h5 {
  font-size: 40px;
  font-weight: 700;
  color: #013B82;
  line-height: 1;
  margin-bottom: 20px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sub_hero h5 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sub_hero h5 {
    font-size: 20px;
  }
}

.itc__sub_hero h4 {
  font-size: 72px;
  font-weight: 700;
  color: #37A755;
  line-height: 1;
  margin-bottom: 50px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sub_hero h4 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sub_hero h4 {
    font-size: 30px;
  }
}

.itc__sub_hero p {
  font-size: 20px;
  font-weight: 400;
  color: #1E1E1E;
  line-height: 25px;
}

@media only screen and (max-width: 500px) {
  .itc__sub_hero p {
    font-size: 16px;
  }
}

.itc__sub_hero .main_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 20px;
}

.itc__sub_hero a {
  background-color: #013B82;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 8px;
  margin-top: 20px;
  display: inline-block;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sub_hero a {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sub_hero a {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 30px;
  }
}

.itc__sub_hero a:hover {
  background-color: #37A755;
}

.itc__services {
  padding: 40px 0;
}

.itc__services h1.title {
  font-size: 70px;
  font-weight: 700;
  color: #37A755;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__services h1.title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__services h1.title {
    font-size: 30px;
  }
}

.itc__services h1.title strong {
  color: #013B82;
  font-weight: 700;
}

.itc__partners h5,
.itc__services h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  max-width: 625px;
  margin: 0 auto;
  margin-bottom: 60px;
  text-align: center;
  color: #1E1E1E;
}

@media only screen and (max-width: 500px) {
  .itc__services h5 {
    font-size: 18px;
  }
}

.itc__services_box {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition-duration: 0.3s;
}

@media only screen and (max-width: 500px) {
  .itc__services_box {
    max-width: 80%;
    margin: 0 auto;
  }
}

.itc__services_box img {
  height: 120px;
  transition-duration: 0.5s;
}

.itc__services_box label {
  font-size: 24px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: #013B82;
  margin-top: 20px;
  line-height: 27px;
}

@media only screen and (max-width: 500px) {
  .itc__services_box label {
    font-size: 18px;
  }
}

.itc__services_box:hover {
  background-color: #013B82;
}

.itc__services_box:hover img {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 8px;
}

.itc__services_box:hover label {
  color: #37A755;
}

.itc__partners {
  padding: 60px 0;
}

.itc__partners h1.title {
  font-size: 70px;
  font-weight: 700;
  color: #37A755;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__partners h1.title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__partners h1.title {
    font-size: 30px;
  }
}

.itc__partners h1.title strong {
  color: #013B82;
  font-weight: 700;
}

.itc__partners_info img {
  height: 190px;
  width: 100%;
  margin-bottom: 40px;
  display: block;
  object-fit: contain;
  object-position: left;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__partners_info img {
    object-position: center;
    height: 150px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__partners_info img {
    object-position: center;
    height: 120px;
  }
}

.itc__partners_info img.right {
  object-position: right;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__partners_info img.right {
    object-position: center;
    height: 150px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__partners_info img.right {
    object-position: center;
    height: 120px;
  }
}

.itc__partners_info h5 {
  font-weight: 700;
  font-size: 40px;
  color: #013B82;
  line-height: 40px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 500px) {
  .itc__partners_info h5 {
    font-size: 20px;
    line-height: 20px;
  }
}

.itc__partners_info h4 {
  font-size: 65px;
  font-weight: 700;
  color: #37A755;
  margin-bottom: 40px;
  line-height: 70px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__partners_info h4 {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__partners_info h4 {
    font-size: 30px;
    line-height: 40px;
  }
}

.itc__partners_info p {
  font-size: 16px;
  font-weight: 400;
  color: #1E1E1E;
  line-height: 25px;
  margin-bottom: 30px;
}

.itc__partners_info>div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 59px;
}

@media only screen and (max-width: 500px) {
  .itc__partners_info>div {
    flex-direction: column;
    gap: 25px;
  }
}

.itc__partners_info>div img {
  height: 148px;
  margin: 0;
}

.itc__partners_info>div p {
  margin: 0;
}

.itc__partners_img img {
  width: 100%;
  margin-top: 190px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__partners_img img {
    width: 50%;
    margin: 20px auto;
    display: block;
  }
}

@media only screen and (max-width: 500px) {
  .itc__partners_img img {
    margin-top: 20px;
  }
}

.itc__products {
  padding: 40px 0;
}

.itc__products h1.title {
  font-size: 70px;
  font-weight: 700;
  color: #37A755;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__products h1.title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__products h1.title {
    font-size: 30px;
  }
}

.itc__products h1.title strong {
  color: #013B82;
  font-weight: 700;
}

.itc__products h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  max-width: 625px;
  margin: 0 auto;
  margin-bottom: 60px;
  text-align: center;
  color: #1E1E1E;
}

@media only screen and (max-width: 500px) {
  .itc__products h5 {
    font-size: 18px;
  }
}

.itc__products_box {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 19px 33px -16px rgba(0, 0, 0, 0.25);
  transition-duration: 0.3s;
}

@media only screen and (max-width: 500px) {
  .itc__products_box {
    max-width: 80%;
    margin: 0 auto;
  }
}

.itc__products_box:hover {
  box-shadow: 0px 0px 0px 2px #009700;
}

.itc__products_box>img {
  height: 237px;
  width: 100%;
  object-fit: none;
}

.itc__products_box label {
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-align: center;
  color: #013B82;
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 27px;
}

.itc__products_box label span {
  color: #37A755;
}

.itc__products_box p {
  font-weight: 400;
  font-size: 14px;
  color: #1E1E1E;
  line-height: 25px;
  text-align: center;
  margin-bottom: 30px;
}

.itc__products_box a {
  background-color: #013B82;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 500px) {
  .itc__products_box a {
    font-size: 16px;
    padding: 8px;
  }
}

.itc__products_box a:hover {
  background-color: #37A755;
}

.itc__sustainable {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 50px;
  padding: 120px 0;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sustainable {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sustainable {
    padding: 60px 0;
  }
}

.itc__sustainable:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.itc__sustainable:before {
  content: "";
  background-image: url(../media/imgs/sustainable_itc_logo.svg);
  height: 420px;
  width: 365px;
  position: absolute;
  top: calc(50% - 210px);
  right: 0;
  z-index: 1;
  background-size: contain;
  background-position: right;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sustainable:before {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sustainable:before {
    display: none;
  }
}

.itc__sustainable h2 {
  font-size: 70px;
  line-height: 72px;
  font-weight: 700;
  color: #ffffff;
  width: calc(100% - 150px);
  margin-bottom: 60px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__sustainable h2 {
    font-size: 60px;
    line-height: 62px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sustainable h2 {
    font-size: 50px;
    line-height: 52px;
    width: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sustainable h2 {
    font-size: 20px;
    line-height: 22px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.itc__sustainable_subscribe {
  width: 50%;
  display: block;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__sustainable_subscribe {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .itc__sustainable_subscribe {
    width: 100%;
  }
}

.itc__sustainable_subscribe label {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
}

.itc__sustainable_subscribe .input-group {
  background-color: #fff;
  border-radius: 150px;
}

.itc__sustainable_subscribe .input-group input {
  border-radius: 150px 0 0 150px;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  color: #1E1E1E;
}

.itc__sustainable_subscribe .input-group input::placeholder {
  color: #8D8D8D;
}

.itc__sustainable_subscribe .input-group input:focus {
  box-shadow: -5px 0px 0 #00b207;
}

.itc__sustainable_subscribe .input-group button {
  background: #00b207;
  border: 1px solid #00b207;
  border-radius: 150px !important;
  padding-inline: 35px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 500px) {
  .itc__sustainable_subscribe .input-group button {
    padding-inline: 10px;
  }
}

.itc__sustainable_subscribe .input-group button:hover {
  background: #013B82;
}

.itc__sustainable img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.itc__contact_title {
  background-color: #37A755;
  color: #ffffff;
  padding: 18px 60px;
}

@media only screen and (max-width: 500px) {
  .itc__contact_title {
    padding: 18px 18px;
  }
}

.itc__contact_title_info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.itc__contact_title_info label {
  font-size: 28px;
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  .itc__contact_title_info label {
    font-size: 18px;
  }
}

.itc__contact_title_info span {
  font-size: 18px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  .itc__contact_title_info span {
    font-size: 14px;
  }
}

.itc__contact_title_info>div {
  display: flex;
  flex-direction: column;
}

.itc__contact_form_data {
  padding: 90px 50px;
}

@media only screen and (max-width: 500px) {
  .itc__contact_form_data {
    padding: 20px 20px;
  }
}

.itc__contact_form_data span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #011C2A;
}

.itc__contact_form_data label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #011C2A;
  margin-top: 20px;
}

.itc__contact_form_data input:not([type="submit"]),
.itc__contact_form_data textarea {
  background-color: #f0f0f0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1E1E1E;
  color: #011C2A;
}

.itc__contact_form_data input:not([type="radio"]):focus,
.itc__contact_form_data textarea:focus {
  box-shadow: -2px 2px 2px #37A755;
}

.itc__contact_form_data input:not([type="radio"])::placeholder,
.itc__contact_form_data textarea::placeholder {
  color: #999999;
  font-size: 14;
  font-weight: 400;
}

.itc__contact_form_data input[type="radio"]+span {
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}

.itc__contact_form_data .radios label {
  display: flex;
  gap: 8px;
  align-items: center;
}

.itc__contact_form_data button,
.itc__contact_form_data input[type="submit"] {
  background-color: #37A755;
  color: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 36px;
  border: none;
  margin-top: 45px;
  transition-duration: 0.3s;
}

@media only screen and (max-width: 500px) {

  .itc__contact_form_data button,
  .itc__contact_form_data input[type="submit"] {
    margin: 25px auto;
    display: block;
  }
}

.itc__contact_form_data button:hover,
.itc__contact_form_data input[type="submit"]:hover {
  background: #013B82;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__contact_form iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 500px) {
  .itc__contact_form iframe {
    height: 250px;
  }
}

.itc__footer {
  background-color: #013B82;
  padding: 90px 0;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__footer {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 500px) {
  .itc__footer {
    padding: 40px 0;
  }
}

.itc__footer_logo {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

@media only screen and (max-width: 500px) {
  .itc__footer_logo {
    justify-content: center;
  }

  .itc__footer_logo>img {
    height: 50px;
  }
}

.itc__footer_logo span {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

@media only screen and (max-width: 500px) {
  .itc__footer_logo span {
    font-size: 20px;
  }
}

.itc__footer_info label {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  display: block;
  color: #ffffff;
}

.itc__footer_info ul {
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.itc__footer_info ul li {
  margin-block: 12px;
}

.itc__footer_info ul li img {
  height: 22px;
  width: 22px;
  object-fit: contain;
  margin-inline-end: 10px;
}

.itc__footer_info ul li span {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
}

.itc__footer_social ul {
  margin-top: 30px;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 16px;
}

.itc__footer_social ul li a {
  text-decoration: none;
}

.itc__footer_links {
  margin-top: 60px;
  color: #ffffff;
}

.itc__footer_links label {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.itc__footer_links ul {
  padding: 0;
  list-style: none;
}

.itc__footer_links ul li {
  padding-block: 8px;
}

.itc__footer_links ul li a {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition-duration: 0.3s;
}

.itc__footer_links ul li:hover a {
  padding-inline-start: 7px;
}

.itc__footer_copyrights {
  margin-top: 20px;
}

.itc__footer_copyrights ul {
  padding: 0;
  list-style: none;
  display: flex;
  margin: 0;
  gap: 40px;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__footer_copyrights ul {
    justify-content: center;
  }
}

@media only screen and (max-width: 500px) {
  .itc__footer_copyrights ul {
    gap: 20px;
  }
}

.itc__footer_copyrights ul li {
  position: relative;
}

.itc__footer_copyrights ul li a {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.itc__footer_copyrights ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 10%;
  right: -20px;
  height: 80%;
  width: 1px;
  background-color: #ffffff;
}

@media only screen and (max-width: 500px) {
  .itc__footer_copyrights ul li:not(:last-child):after {
    right: -10px;
  }
}

/* ====== Arabic Version ====== */
[dir="rtl"] * {
  font-family: "Cairo", sans-serif;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  [dir="rtl"] .itc__header_language {
    left: 8px;
    right: auto;
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  [dir="rtl"] .itc__header_language {
    left: 73px;
    right: auto;
  }
}

@media only screen and (max-width: 500px) {
  [dir="rtl"] .itc__header_language {
    left: 8px;
    right: auto;
  }
}

[dir="rtl"] .itc__header_main_nav ul li:after {
  right: 100%;
  left: auto;
}

[dir="rtl"] .itc__header_main_nav ul li:not(:last-child):hover:after {
  right: -30px;
  left: auto;
}

[dir="rtl"] .itc__hero h2 {
  font-weight: 600;
}

[dir="rtl"] .itc__sub_hero>.container>.row {
  flex-direction: row-reverse;
}

[dir="rtl"] .itc__sub_hero h5,
[dir="rtl"] .itc__sub_hero h4,
[dir="rtl"] .itc__sub_hero p {
  font-family: DimaNotoBold, sans-serif;
  line-height: 1.2;
}

[dir="rtl"] .itc__sub_hero a {
  direction: ltr;
}

[dir="rtl"] .itc__partners>.container>.row>.col-12>.row {
  flex-direction: row-reverse;
}

[dir="rtl"] .itc__products_box a {
  flex-direction: row-reverse;
}

[dir="rtl"] .itc__sustainable:before {
  right: auto;
  left: 0;
}

[dir="rtl"] .itc__sustainable_subscribe .input-group input {
  border-radius: 0 15px 15px 0 !important;
}

[dir="rtl"] .itc__contact_form>.row {
  flex-direction: row-reverse;
}

[dir="rtl"] .itc__footer_copyrights ul li:not(:last-child):after {
  left: -20px;
  right: auto;
}

/*# sourceMappingURL=main.css.map */
.qtranxs_language_chooser li.active {
  display: none;
}

ul#qtranslate-chooser {
  list-style-type: none;
  margin-bottom: 5px;
}

span.wpcf7-list-item {
  display: inline-block;
}

/***********************************************************blogs********************************************************/

.itc__hero_blog {
  height: calc(60vh - 150px);
  width: 100%;
  position: relative;
  z-index: 0;
  background-position: center 100%;
  background-attachment: fixed;
  background-size: 1600px 650px;
  background-repeat: no-repeat;
  margin-top: 50px;
  margin-bottom: -60px;
}
@media only screen and (max-width: 1920px) and (min-width: 800px) {
  .itc__hero_blog {
    margin-top: 70px;
    height: calc(65vh - 80px);
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog {
    margin-top: 40px;
    height: calc(45vh - 60px);
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog {
    margin-top: 20px;
    height: calc(75vh - 60px);
  }
}

.itc__hero_blog > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.itc__hero_blog:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 1920px) and (min-width: 800px) {
  .itc__hero_blog h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog h1 {
    font-size: 30px;
  }
}
.itc__hero_blog h1 {
  color: #013b82;
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-top: 50px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_blog h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog h1 {
    font-size: 30px;
  }
}

.itc__hero_blog h2 {
  color: #37a755;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-top: 50px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_blog h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog h2 {
    font-size: 20px;
  }
}
.itc__hero_blog p {
  color: #666666;
  font-weight: 400;
  font-size: 16.5px;
  text-align: center;
  margin: 20px auto;
  line-height: 22px;
  max-width: 50%;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog p {
    max-width: 100%;
  }
}
.itc__hero_blog a {
  background-color: #013b82;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 50px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  margin: 100px auto;
  transition-duration: 0.3s;
}
.itc__hero_blog a:hover {
  background-color: #37a755;
}

.itc__blog_box img {
  max-width: 100%;
  border-radius: 15px;
}

.itc__blog_box a {
  font-size: 15px;
  color: #013b82;
  font-weight: bold;
  text-decoration: none;
}

.col-12,
.col-md-6,
.col-lg-4 {
  padding: 0 18px;
}

@media only screen and (max-width: 500px) {
  .itc__blog_box {
    max-width: 80%;
    margin: 0 auto;
  }
}
.itc__blog_box > img {
  height: 400px;
  width: 100%;
  object-fit: none;
}

.itc__blog_box .container {
  display: flex;
  gap: 20px;
}

.style1 {
  font-size: 15px;
  color: #013b82;
  font-weight: bold;
}

.style2 {
  color: #999999;
  font-size: 15px;
}

.blog-title {
  font-size: 25px;
  font-weight: bold;
  margin-top: 15px;
  color: #37a755;
}

.itc__blog p {
  padding-top: 30px;
  font-size: 16px;
  color: #666666;
  margin-top: 10px;
}

/***********************************************************blog1***********************************************************/

.itc__hero_blog1 {
  height: calc(60vh - 160px);
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 10px;
}
@media only screen and (max-width: 1920px) and (min-width: 800px) {
  .itc__hero_blog1 {
    margin-top: 50px;
    height: calc(60vh - 50px);
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog1 {
    margin-top: 40px;
    height: calc(90vh - 80px);
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog1 {
    margin-top: 10px;
    height: calc(75vh - 30px);
  }
}

.itc__hero_blog1 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.itc__hero_blog1:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_blog1 h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog1 h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog1 h1 {
    font-size: 30px;
  }
}
.itc__hero_blog1 h1 {
  color: #37a755;
  font-weight: 700;
  font-size: 40px;
  text-align: right;
  margin-top: 50px;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_blog1 h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog1 h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog1 h1 {
    font-size: 30px;
  }
}

.itc__hero_blog1 p {
  color: #666666;
  font-weight: 400;
  font-size: 16.5px;
  text-align: center;
  margin: 20px auto;
  line-height: 22px;
  max-width: 50%;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog1 p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog1 p {
    max-width: 100%;
  }
}

.itc__blog1 .container img {
  width: 100%;
  height: 600px;
  border-radius: 15px;
  text-align: center;
  margin-top: -100px;
}

.itc__blog1 .container h2 {
  font-size: 30px;
  color: #3bb54a;
  font-weight: 700;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_blog1 h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_blog1 h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_blog1 h2 {
    font-size: 10px;
  }
}

.blog1 p {
  padding-top: 10px;
  margin-top: 30px;
  font-size: 16px;
  color: #000000;
  margin-top: 10px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .blog1 p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .blog1 p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 500px) {
  .blog1 p {
    font-size: 10px;
  }
}

.blog1 li {
  font-weight: 600;
  font-size: 17px;
  color: #013b82;
  margin-top: 10px;
}
.blog1 li a {
  font-weight: 600;
  font-size: 17px;
  color: #013b82;
  margin-top: 10px;
  text-decoration: none;
}

section,
h2 {
  scroll-margin-top: 90px;
}

/*************************************************************about us*******************************************************/

.itc__hero_about {
  background-image: url(../media/imgs/abouthero_bg.png);
  height: calc(100vh - 160px);
  width: 100%;
  position: relative;
  z-index: 0;
  background-position: center 100%;
  background-attachment: fixed;
  background-size: 1600px 650px;
  background-repeat: no-repeat;
  margin-top: 160px;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_about {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_about {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_about {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}
.itc__hero_about > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.itc__hero_about:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 152, 71, 0.3);
  z-index: -1;
}
.itc__hero_about h1 {
  color: #ffffff;
  font-weight: 200;
  font-size: 120px;
  text-align: center;
  margin: 15px 0;
  line-height: 1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_about h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_about h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_about h1 {
    font-size: 40px;
  }
}
.itc__hero_about h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 90px;
  text-align: center;
  margin-top: 50px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_about h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_about h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_about h2 {
    font-size: 30px;
  }
}
.itc__hero_about p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  margin: 20px auto;
  line-height: 22px;
  max-width: 50%;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_about p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_about p {
    max-width: 100%;
  }
}
.itc__hero_about a {
  background-color: #013b82;
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 50px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  margin: 100px auto;
  transition-duration: 0.3s;
}
.itc__hero_about a:hover {
  background-color: #37a755;
}

.itc__about {
  padding: 60px 0;
}
.itc__about h1.title {
  font-size: 70px;
  font-weight: 700;
  color: #37a755;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__about h1.title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__about h1.title {
    font-size: 30px;
  }
}
.itc__about h1.title strong {
  color: #013b82;
  font-weight: 700;
}
.itc__about_info img {
  height: 190px;
  width: 100%;
  margin-bottom: 40px;
  display: block;
  object-fit: contain;
  object-position: left;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__about_info img {
    object-position: center;
    height: 150px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__about_info img {
    object-position: center;
    height: 120px;
  }
}
.itc__about_info img.right {
  object-position: right;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__about_info img.right {
    object-position: center;
    height: 150px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__about_info img.right {
    object-position: center;
    height: 120px;
  }
}

.itc__about_info {
  margin-top: 200px;
}

.itc__about_info h5 {
  font-weight: 700;
  font-size: 42px;
  color: #013b82;
  line-height: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 500px) {
  .itc__about_info h5 {
    font-size: 20px;
    line-height: 20px;
  }
}
.itc__about_info h4 {
  font-size: 35px;
  font-weight: 700;
  color: #37a755;
  margin-bottom: 40px;
  line-height: 70px;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__about_info h4 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__about_info h4 {
    font-size: 30px;
    line-height: 40px;
  }
}
.itc__about_info p {
  font-size: 20px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 25px;
  margin-bottom: 30px;
}
.itc__about_info > div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 59px;
}
@media only screen and (max-width: 500px) {
  .itc__about_info > div {
    flex-direction: column;
    gap: 25px;
  }
}
.itc__about_info > div img {
  height: 148px;
  margin: 0;
}
.itc__about_info > div p {
  margin: 0;
}
.itc__about_img img {
  width: 100%;
  margin-top: 190px;
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__about_img img {
    width: 50%;
    margin: 20px auto;
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .itc__about_img img {
    margin-top: 20px;
  }
}

/*******************************************************contact us***********************************************************/

.itc__hero_contactus {
  margin-top: 150px;
  width: 100%;
  position: relative;
  z-index: 0;
  background-position: center 100%;
  background-attachment: fixed;
}

@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_contactus {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_contactus {
    margin-top: 100px;
    height: calc(100vh - 100px);
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_contactus {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
}
.itc__hero_contactus > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.itc__hero_contactus:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_contactus h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_contactus h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_contactus h1 {
    font-size: 40px;
  }
}
.itc__hero_contactus h1 {
  color: #37a755;

  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin-top: 100px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) and (min-width: 800px) {
  .itc__hero_contactus h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_contactus h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_contactus h1 {
    font-size: 30px;
  }
}

.itc__contactus {
  padding: 50px 0;
}

.itc__contactus_box {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.itc__contactus_box a {
  text-decoration: none;
}

.itc__contactus_box:hover {
  transform: translateY(-10px);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-background {
  background-color: #0e357a;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-background img {
  width: 30px;
  height: 30px;
}

.itc__contactus_box h3 {
  font-size: 24px;
  color: #0e357a;
  margin-bottom: 10px;
  font-weight: 700px;
}

.itc__contactus_box p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.itc__hero_contactus p {
  color: #7a7a7a;
  font-weight: 400;
  font-size: 16.5px;
  text-align: center;
  margin: 20px auto;
  line-height: 22px;
  max-width: 50%;
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_contactus p {
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .itc__hero_contactus p {
    max-width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .itc__contactus_box {
    max-width: 80%;
    margin: 0 auto;
  }
}

/********************************************************________________product________________*****************************************************************/

.itc__hero_product {
  height: calc(70vh - 100px);
  width: 100%;
  position: relative;
  z-index: 0;
  background-position: center 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin-top: 50px;
}

.itc__hero_product .dw {
  width: 250px;
  background-color: #013b82;
  color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  transition-duration: 0.3s;
  text-decoration: none;
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
}
.itc__hero_product .dw:hover {
  background-color: #37a755;
}
.itc__hero_product .dw img {
  height: 15px;
  margin-inline-start: 10px;
}

@media only screen and (max-width: 1940px) and (min-width: 800px) {
  .itc__hero_product {
    margin-top: 60px;
    height: calc(90vh - 60px);
  }
}

@media only screen and (max-width: 800px) and (min-width: 500px) {
  .itc__hero_product {
    margin-top: 50px;
    height: calc(85vh - 50px);
  }
}

@media only screen and (max-width: 500px) {
  .itc__hero_product {
    margin-top: 40px;
    height: calc(80vh - 40px);
  }
}

.itc__hero_product > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.itc__hero_product .pro1_tit {
  width: 400px;
}

/***********************************************************************/

.itc__pro {
  margin-top: -100px;
}

.itc__product {
  background-color: #ffffff;
  border-radius: 25px;
  padding-left: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 600px;
  width: 500px;
  box-shadow: 0px 19px 33px -16px rgba(0, 0, 0, 0.25);
  transition-duration: 0.3s;
}
@media only screen and (max-width: 500px) {
  .itc__product {
    max-width: 80%;
    margin: 0 auto;
    height: auto;
  }
}
.itc__product:hover {
  box-shadow: 0px 0px 0px 2px #009700;
}
.itc__product label {
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-align: center;
  color: #013b82;
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 27px;
}
.itc__product p {
  font-weight: 400;
  font-size: 14px;
  color: #1e1e1e;
  line-height: 25px;
  text-align: center;
  margin-bottom: 30px;
}

.itc__product a {
  background-color: #013b82;
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 500px) {
  .itc__product a {
    font-size: 16px;
    padding: 8px;
  }
}

.itc__product a:hover {
  background-color: #37a755;
}

/*******************ـــــــــــــــ*****************/

/* Responsive container styling */
.container0 {
  position: relative;
  max-width: 90%;
  width: 600px;
  height: auto;
  background-color: #ffffff;
  box-shadow: 0px 19px 33px -16px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  padding: 20px;
  margin: 0 auto;
}

.container0 .container01 {
  padding: 5%;
  text-align: right;
  padding-top: 10px;
}

.container0 .overlay-image {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
}

.container0 .add a {
  color: #ffffff;
  padding: 10px;
  width: 80%;
  max-width: 250px;
  gap: 10px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #009700;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  margin: 20px auto;
}

.container0 .addicon {
  width: 30px;
}

.container0 h4 {
  font-size: 18px;
  font-weight: 600;
  color: #37a755;
  line-height: 35px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container0 {
    width: 100%;
    padding: 15px;
  }
  .container0 .overlay-image {
    width: 50px;
    height: 50px;
  }
  .container0 .add a {
    font-size: 16px;
    padding: 8px;
  }
  .container0 h4 {
    font-size: 16px;
    line-height: 30px;
  }
  .container0 h5 {
    font-size: 14px;
    line-height: 30px;
  }
}

/***********************************************************************************/

.container000 {
  margin-top: 50px;
}

.container00 .overlay-image {
  position: absolute;
  z-index: 2;
  width: 51px;
  height: 51px;
  margin-right: -10px;
}

.container00 a {
  position: relative;
  height: 50px;
  width: 300px;
  box-shadow: 0px 19px 33px -16px rgba(0, 0, 0, 0.25);

  border-radius: 35px;
  font-weight: 700;
  background-color: #ffffff;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transition-duration: 0.3s;
}
/*
.container00 a:hover {
  background-color: #143c89;
}*/

.container00 p {
  color: #009700;
  padding-top: 15px;
}
/*
.container00 p:hover {
  color: #009700;
  padding-top: 15px;
}*/

.proinfo {
  margin-top: 100px;
  margin-right: 50px;
}

.content-box {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.content-box p {
  font-size: 16px;
  color: #333;
}

.toggle-link {
  text-decoration: none;
  padding: 10px 20px;
  border: none;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 70%;
}

.toggle-link.active {
  background-color: #009700;
  opacity: 100%;
}
.toggle-link.active p {
  color: #ffffff;
}

/**************************************/

.content-box {
  display: none;
  margin-top: 50px;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  border: 2px solid #009700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease-in-out;
}

.title-container p {
  font-size: 25px;
  margin-bottom: 15px;
  margin-right: 30px;
  color: #009700;
  font-weight: 700;
}

.list-container ul,
.list-container ol,
.list-container p {
  font-size: 20px;
  margin-bottom: 15px;
  color: #143c89;
}

.list-container li {
  line-height: 1.8;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 20px;
  color: #143c89;
  margin-right: 20px;
}

.table-container th,
.table-container td {
  padding: 10px;
  text-align: right;
}

.table-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.table {
  width: 40%;
  border-collapse: collapse;
}

.table th,
.table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: right;
}

.table th {
  background-color: #f4f4f4;
}

.popup-image {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
}

.popup-image:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/*********************/
@media (max-width: 768px) {
  .container000 {
    margin-top: 30px;
  }

  .container00 .overlay-image {
    width: 40px;
    height: 40px;
  }

  .container00 a {
    height: 45px;
    width: 250px;
    font-size: 22px;
    padding-right: 40px;
    gap: 15px;
  }

  .container00 p {
    font-size: 18px;
  }

  .proinfo {
    margin-top: 80px;
    margin-right: 30px;
  }

  .content-box {
    margin-top: 30px;
    padding: 15px;
    border-radius: 20px;
  }

  .title-container p {
    font-size: 22px;
    margin-bottom: 10px;
    margin-right: 20px;
  }

  .list-container ul,
  .list-container ol,
  .list-container p {
    font-size: 18px;
  }

  .table-container table {
    font-size: 18px;
    margin-right: 10px;
  }

  .table th,
  .table td {
    padding: 8px;
  }

  .popup-image {
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .container00 a {
    height: 40px;
    width: 250px;
    font-size: 20px;
    padding-right: 30px;
    gap: 10px;
  }

  .container00 p {
    font-size: 16px;
  }

  .content-box {
    margin-top: 30px;
    padding: 15px;
    border-radius: 20px;
    width: 90%;
  }

  .title-container p {
    font-size: 20px;
  }

  .list-container ul,
  .list-container ol,
  .list-container p {
    font-size: 14px;
  }

  .table-container table {
    font-size: 14px;
  }

  .popup-image {
    width: 35px;
    height: 35px;
  }
}

/********************************************************************************************************/

.container02 {
  text-align: center;
  width: 100%;
  margin-top: 50px;
}

.container02 .overlay-image2 {
  position: absolute;
  width: 65px;
  height: 65px;
  margin-right: -30px;
}

.toggle-btn1,
.toggle-btn2 {
  width: 100%;
  height: 60px;

  background-color: #009700;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  margin-top: 50px;
}

.toggle-btn3 {
  width: 100%;
  height: 70px;

  background-color: #143c89;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  margin-top: 50px;
}

.toggle-btn3 .warning {
  position: absolute;
  width: 50px;
  height: 50px;
  margin-right: 30px;
}

.toggle-btn3 p {
  font-size: 20px;
  color: #ffffff;
  padding-right: 50px;
  padding-top: 10px;
  margin-right: 50px;
}

.toggle-btn1.active,
.toggle-btn2.active {
  background-color: #009700;

  color: white;
}

.toggle-btn1:hover,
.toggle-btn2:hover {
  background-color: #009700;
  color: #ffffff;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
/*
.arrow1,
.arrow2 {
  transition: transform 0.3s ease;
  margin-right: 950px;
  font-size: 25px;
}*/

.content-box1,
.content-box2 {
  font-size: 20px;
  color: #143c89;
  display: none;
  margin-top: 0px;
  padding: 20px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: right;
}

.content-box2 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #909090;
  border-radius: 30px;
  overflow: hidden;
}

.content-box2 th,
.content-box2 td {
  padding: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

@media (max-width: 768px) {
  .container02 {
    margin-top: 30px;
  }

  .container02 .overlay-image2 {
    width: 50px;
    height: 50px;
    margin-right: -20px;
  }

  .toggle-btn1,
  .toggle-btn2,
  .toggle-btn3 {
    height: 50px;
    font-size: 18px;
    border-radius: 25px;
    margin-top: 30px;
  }

  .arrow1,
  .arrow2 {
    margin-right: 200px;
    font-size: 22px;
  }

  .content-box1,
  .content-box2 {
    font-size: 18px;
    padding: 15px;
    border-radius: 40px;
    margin-left: 30px;
  }

  .content-box2 th,
  .content-box2 td {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .toggle-btn1,
  .toggle-btn2,
  .toggle-btn3 {
    height: 40px;
    width: 80%;
    margin-right: 30px;
  }

  .container02 .overlay-image2 {
    position: absolute;
    width: 40px;
    height: 40px;
  }

  .arrow1,
  .arrow2 {
    margin-right: 60px;
    font-size: 15px;
  }

  .content-box1,
  .content-box2 {
    width: 80%;
    margin-right: 30px;
    font-size: 16px;
    padding: 10px;
  }

  .content-box2 th,
  .content-box2 td {
    font-size: 12px;
    padding: 8px;
  }
}

/*****************************************/

.content-box2 th {
  background-color: #eaf7e4;
  color: #006400;
}

.content-box2 td {
  background-color: #ffffff;
  color: #143c89;
}

.content-box2 .titbg {
  background-color: #f2f2f2;
  color: #143c89;
}

.container02 h4 {
  margin-right: 50px;
  margin-top: 10px;
}

.content-box2 td:first-child,
.content-box2 th:first-child {
  width: 20%;
  text-align: right;
}

/**************************************/

.content-box2 th {
  color: #009700;
  padding: 10px;
  text-align: center;
  padding-right: 20px;
  padding-top: 20px;
}

.content-box2 td {
  border: 1px solid #aaaaaa;
  padding: 10px;
  text-align: right;
  padding-right: 20px;
}

.container02 .content-box2 p {
  padding-right: 20px;
}

@media (max-width: 768px) {
  .container02 h4 {
    margin-right: 30px;
    font-size: 17px;
  }

  .toggle-btn3 p {
    font-size: 13px;
    padding-right: 30px;
    padding-top: 8px;
  }

  .toggle-btn3 .warning {
    position: absolute;
    width: 30px;
    height: 30px;
    margin-right: 30px;
  }

  .content-box2 {
    font-size: 16px;
    padding: 15px;
  }

  .content-box2 th {
    font-size: 16px;
    padding: 8px;
  }

  .content-box2 td {
    font-size: 14px;
    padding: 8px;
  }

  .content-box2 td:first-child,
  .content-box2 th:first-child {
    width: 25%;
  }
}

@media (max-width: 480px) {
  .container02 h4 {
    margin-right: 20px;
    font-size: 16px;
  }

  .toggle-btn1,
  .toggle-btn2,
  .toggle-btn3 {
    height: 40px;
    width: 80%;
    margin-right: 30px;
  }

  .toggle-btn3 p {
    font-size: 10px;
    padding-right: 20px;
  }

  .content-box1,
  .content-box2 {
    width: 80%;
    margin-right: 30px;
    font-size: 16px;
    padding: 10px;
  }

  .content-box2 {
    font-size: 14px;
    padding: 10px;
  }

  .content-box2 th {
    font-size: 14px;
    padding: 6px;
  }

  .content-box2 td {
    font-size: 12px;
    padding: 6px;
  }

  .content-box2 td:first-child,
  .content-box2 th:first-child {
    width: 30%;
  }

  .toggle-btn1 h4,
  .toggle-btn2 h4 {
    font-size: 15px;
    margin-right: 50px;
  }
  .toggle-btn3 .warning {
    position: absolute;
    width: 20px;
    height: 20px;
    margin-right: 30px;
  }

  .toggle-btn3 {
    height: 80px;
  }

  .container02 .overlay-image2 {
    position: absolute;
    width: 40px;
    height: 40px;
  }
}
