html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f7f7;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 3px;
  border-top-color: #f44323;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #ffffff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  -webkit-transition: .6s;
  transition: .6s;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.preloader .preloader-circle2 {
  border-top-color: #0078ff;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: .6s;
  transition: .6s;
}

.preloader .preloader-img img {
  max-width: 100px;
}

.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 13vh;
  width: 100%;
  background-color: white;
  padding: 0px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  z-index: 99;
}

header .log {
  width: 35%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

header .log img {
  margin: 0px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

header .ghost {
  width: 16%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .ghost .bars {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .ghost .bars .line {
  width: 100%;
  padding: 3px 0px;
  background-color: #f44323;
  border-radius: 6px;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

header .ghost .bars .line:nth-child(3) {
  background-color: #f44323;
  position: absolute;
  top: 13px;
  width: 56%;
  border-radius: 6px;
}

header .ghost .bars .line:nth-child(2) {
  background-color: #f44323;
  position: absolute;
  width: 100%;
  top: -13px;
  border-radius: 6px;
}

header .ghost .active .line:nth-child(3) {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  width: 90%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
          box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
}

header .ghost .active .line:nth-child(2) {
  background-color: #ffffff;
  position: absolute;
  width: 90%;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
          box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
}

header .ghost .active #dis {
  opacity: 0;
}

header .links {
  opacity: 0;
  background-color: #f44323;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-800px);
          transform: translateY(-800px);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header .links ul {
  margin: 10px 0px;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

header .links ul li {
  margin: 20px 0px;
}

header .links ul li a {
  text-decoration: none;
  color: white;
  font-family: "Poppins_Regular";
  font-size: 20px;
  text-transform: uppercase;
}

header .links ul button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: white;
}

header .links ul button a {
  text-decoration: none;
  color: white;
}

header .links ul button a {
  color: #212121;
}

header .open {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header_active .links {
  display: none;
}

.header_active .ghost {
  display: none;
}

.banner {
  height: 80vh;
  width: 100vw;
  background-image: url(../Images/AAbout_usbg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

.banner .overlay {
  overflow: hidden;
  -o-object-fit: contain;
     object-fit: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ee4823ca;
  height: 100%;
  width: 100%;
}

.banner .overlay .box {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30% 0px 0px;
}

.banner .overlay .box .banner_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner .overlay .box .banner_text h1 {
  font-family: "Poppins_bold";
  font-size: 30px;
  color: white;
  text-transform: capitalize;
  margin: 0px 0px;
  text-align: center;
}

.About {
  padding: 25px;
  overflow: hidden;
}

.About .text_box {
  margin: 20px 0px;
}

.About .text_box h2 {
  font-family: "Poppins_bold";
  font-size: 30px;
  color: red;
}

.About .text_box p {
  font-family: "Poppins_Regular";
  font-size: 12px;
  line-height: 1.7;
  margin: 15px 0px;
}

.About .text_box h3 {
  font-family: "Poppins_Semibold";
  font-size: 16px;
}

.About .text_box button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.About .text_box button a {
  text-decoration: none;
  color: white;
}

.About .img {
  margin: 25px 0px;
}

.About .img img {
  width: 100%;
}

.Mession {
  padding: 25px;
  overflow: hidden;
}

.Mession .text_box {
  margin: 20px 0px;
}

.Mession .text_box h2 {
  font-family: "Poppins_bold";
  font-size: 30px;
  color: red;
}

.Mession .text_box p {
  font-family: "Poppins_Regular";
  font-size: 12px;
  line-height: 1.7;
  margin: 15px 0px;
}

.Mession .text_box h3 {
  font-family: "Poppins_Semibold";
  font-size: 16px;
}

.Mession .text_box button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.Mession .text_box button a {
  text-decoration: none;
  color: white;
}

.Mession .img {
  margin: 25px 0px;
}

.Mession .img img {
  width: 100%;
}

.OurValues {
  padding: 25px;
  background-color: #d1d0d0;
}

.OurValues h2 {
  font-family: "Poppins_bold";
  font-size: 32px;
  margin: 20px 0px;
  text-align: center;
}

.OurValues h2 span {
  color: #f44323;
}

.OurValues .Wraper .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
  margin: 15px 0px;
  border-radius: 5px;
  -webkit-box-sizing: -10px 9px 7px 0px #21212126;
          box-sizing: -10px 9px 7px 0px #21212126;
  background-color: #f1f1f1;
}

.OurValues .Wraper .box .img {
  width: 30%;
}

.OurValues .Wraper .box .img img {
  width: 100%;
}

.OurValues .Wraper .box .text {
  width: 65%;
}

.OurValues .Wraper .box .text h3 {
  font-family: "Poppins_Semibold";
  font-size: 12px;
}

.OurValues .Wraper .box .text p {
  font-family: "Poppins_Regular";
  font-size: 9px;
  line-height: 1.8;
  margin: 5px 0;
}

.Members {
  padding: 25px;
}

.Members h2 {
  font-family: "Poppins_bold";
  font-size: 30px;
  margin: 20px 0px;
  text-align: center;
}

.Members h2 span {
  color: #f44323;
}

.Members .boxes .box {
  position: relative;
}

.Members .boxes .box .img img {
  width: 100%;
}

.Members .boxes .box .title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ea1b1bbf;
  padding: 20px;
}

.Members .boxes .box .title h3 {
  font-family: "Poppins_bold";
  font-size: 22px;
  color: white;
  text-align: center;
}

.Members .boxes .box .title h4 {
  font-family: "Poppins_Regular";
  font-size: 18px;
  color: white;
  text-align: center;
  margin: 4px;
}

.Members .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0px;
}

.Members .slick-dots li {
  margin: 0px 5px;
}

.Members .slick-dots li button {
  color: white;
  font-family: "Poppins_bold";
  background-color: #f44323;
  border: none;
  padding: 10px;
  font-size: 0;
  border-radius: 10px;
}

.Members .slick-dots .slick-active button {
  background-color: #9f9f9f;
}

.Members .slider {
  width: 50%;
  margin: 100px auto;
  background-color: #0D0D2B;
}

.Members .slick-slide {
  margin: 10px 10px;
}

.Members .slick-slide img {
  width: 100%;
}

.Members .slick-prev:before,
.Members .slick-next:before {
  color: red;
}

.Members .slick-slide {
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  opacity: .2;
}

.Members .slick-active {
  opacity: 1;
}

.Members .slick-current {
  opacity: 1;
}

footer {
  background-color: #212121;
  padding: 25px;
  color: white;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

footer .Dival {
  margin: 30px 0px;
}

footer .Dival .img img {
  width: 70%;
}

footer .Dival h3 {
  font-family: "Poppins_Semibold";
  font-size: 22px;
  margin: 10px 0px;
}

footer .Dival p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0px;
}

footer .Dival button {
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  font-size: 16px;
  font-family: "Poppins_bold";
  text-decoration: none;
  color: #f44323;
  background: #f44323;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: white;
  margin: 0 auto;
}

footer .Dival button a {
  text-decoration: none;
  color: white;
}

footer .Dival button a {
  color: #212121;
}

footer .NewsLatter h3 {
  font-family: "Poppins_Semibold";
  font-size: 22;
  margin: 10px 0px;
}

footer .NewsLatter p {
  font-family: "Poppins_Regular";
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0px;
}

footer .NewsLatter form {
  margin: 15px 0px;
}

footer .NewsLatter form input {
  font-family: "Poppins_light";
  font-size: 22px;
}

footer .links {
  margin: 30px 0px;
  font-family: "Poppins_Semibold";
  font-size: 20px;
}

footer .links h3 {
  font-family: "Poppins_Semibold";
  font-size: 25px;
}

footer .links a {
  display: block;
  text-decoration: none;
  font-family: "Poppins_light";
  font-size: 16px;
  margin: 12px 0px;
  color: white;
}

footer .Copyrights p {
  font-family: "Poppins_light";
  font-size: 14px;
  text-align: center;
}

@media (min-width: 568px) {
  header {
    height: 19vh;
  }
  header .log {
    width: 20%;
  }
  header .ghost {
    width: 10.4%;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 3px 0px;
    background-color: #02103d;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #212121;
    position: absolute;
    top: 13px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #212121;
    position: absolute;
    width: 100%;
    top: -13px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 73%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
            box-shadow: 2px 2px 2px rgba(128, 128, 128, 0.37);
  }
  header .ghost .active .line:nth-child(2) {
    background-color: #ffffff;
    position: absolute;
    width: 73%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .links ul {
    margin: 10px 0px;
    text-decoration: none;
    text-align: center;
  }
  header .links ul li {
    margin: 20px 0px;
  }
  header .links ul li a {
    text-decoration: none;
    color: white;
    font-family: "Poppins_bold";
    font-size: 18px;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: fixed;
  }
  .header_active .links {
    display: none;
  }
  .header_active .ghost {
    display: none;
  }
}

@media (min-width: 667px) {
  header {
    height: 19vh;
  }
  header .log {
    width: 20%;
  }
  header .ghost {
    width: 11%;
  }
  header .ghost span a {
    color: #f44323;
    font-size: 30px;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 3px 0px;
    background-color: #212121;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #212121;
    position: absolute;
    top: 13px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #212121;
    position: absolute;
    width: 100%;
    top: -13px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 73%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px white;
            box-shadow: 2px 2px 2px white;
  }
  header .ghost .active .line:nth-child(2) {
    background-color: white;
    position: absolute;
    width: 73%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .links ul {
    margin: 10px 0px;
    text-decoration: none;
    text-align: center;
  }
  header .links ul li {
    margin: 20px 0px;
  }
  header .links ul li a {
    text-decoration: none;
    color: white;
    font-family: "Poppins_Regular";
    font-size: 22px;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    position: fixed;
  }
}

@media (min-width: 768px) {
  header {
    padding: 0px 4%;
    height: 12vh;
  }
  header .log {
    width: 30%;
  }
  header .log img {
    margin: 0px 0px 0px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .links {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
  }
  header .links ul li {
    margin: 30px 0px;
  }
  header .links ul li a {
    font-size: 30px;
  }
  header .links ul button {
    font-size: 22px;
  }
  header .ghost {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 12%;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 5px 0px;
    background-color: #f44323;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #f44323;
    position: absolute;
    top: 19px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #f44323;
    position: absolute;
    width: 100%;
    top: -19px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 90%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
            box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
  }
  header .ghost .active .line:nth-child(2) {
    background-color: #ffffff;
    position: absolute;
    width: 90%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .banner {
    padding: 8% 0px;
    height: 40vh;
  }
  .banner .overlay .box {
    width: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20% 0px 0px;
    padding: 20px;
  }
  .banner .overlay .box .banner_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px;
    text-align: center;
  }
  .About {
    padding: 50px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .About .text_box {
    margin: 0px 0px;
    width: 43%;
  }
  .About .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 30px;
    color: red;
  }
  .About .text_box p {
    font-family: "Poppins_Regular";
    font-size: 12px;
    line-height: 1.7;
    margin: 15px 0px;
  }
  .About .text_box h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  .About .text_box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
  }
  .About .text_box button a {
    text-decoration: none;
    color: white;
  }
  .About .img {
    margin: 0px 0px;
    width: 53%;
  }
  .About .img img {
    width: 100%;
  }
  .Mession {
    padding: 25px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .Mession .text_box {
    margin: 20px 0px;
    width: 43%;
  }
  .Mession .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 30px;
    color: red;
  }
  .Mession .text_box p {
    font-family: "Poppins_Regular";
    font-size: 12px;
    line-height: 1.7;
    margin: 15px 0px;
  }
  .Mession .text_box h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
  }
  .Mession .text_box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  .Mession .text_box button a {
    text-decoration: none;
    color: white;
  }
  .Mession .img {
    margin: 25px 0px;
    width: 53%;
  }
  .Mession .img img {
    width: 100%;
  }
  .OurValues {
    padding: 25px;
    background-color: #d1d0d0bd;
  }
  .OurValues h2 {
    font-family: "Poppins_bold";
    font-size: 50px;
    margin: 20px 0px;
    text-align: center;
  }
  .OurValues h2 span {
    color: #f44323;
  }
  .OurValues .Wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .OurValues .Wraper .box {
    width: 40%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px;
    margin: 15px 20px;
    border-radius: 5px;
    -webkit-box-sizing: -10px 9px 7px 0px #21212126;
            box-sizing: -10px 9px 7px 0px #21212126;
    background-color: #f1f1f1;
  }
  .OurValues .Wraper .box .img {
    width: 30%;
  }
  .OurValues .Wraper .box .img img {
    width: 100%;
  }
  .OurValues .Wraper .box .text {
    width: 65%;
  }
  .OurValues .Wraper .box .text h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
  }
  .OurValues .Wraper .box .text p {
    font-family: "Poppins_Regular";
    font-size: 9px;
    line-height: 1.8;
    margin: 5px 0;
  }
  .Members {
    padding: 25px;
  }
  .Members h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    margin: 20px 0px;
    text-align: center;
    margin: 20px 0px;
  }
  .Members h2 span {
    color: #f44323;
  }
  .Members .boxes .box {
    position: relative;
  }
  .Members .boxes .box .img img {
    width: 100%;
  }
  .Members .boxes .box .title {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ea1b1bbf;
    padding: 15px;
  }
  .Members .boxes .box .title h3 {
    font-family: "Poppins_bold";
    font-size: 22px;
    color: white;
    text-align: center;
  }
  .Members .boxes .box .title h4 {
    font-family: "Poppins_Regular";
    font-size: 18px;
    color: white;
    text-align: center;
    margin: 4px;
  }
  .Members .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 15px 0px;
  }
  .Members .slick-dots li {
    margin: 0px 5px;
  }
  .Members .slick-dots li button {
    color: white;
    font-family: "Poppins_bold";
    background-color: #f44323;
    border: none;
    padding: 10px;
    font-size: 0;
    border-radius: 10px;
  }
  .Members .slick-dots .slick-active button {
    background-color: #9f9f9f;
  }
  .Members .slider {
    width: 50%;
    margin: 100px auto;
    background-color: #0D0D2B;
  }
  .Members .slick-slide {
    margin: 10px 5px;
  }
  .Members .slick-slide img {
    width: 100%;
  }
  .Members .slick-prev:before,
  .Members .slick-next:before {
    color: red;
  }
  .Members .slick-slide {
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  .Members .slick-active {
    opacity: 1;
  }
  .Members .slick-current {
    opacity: 1;
  }
  footer {
    background-color: #212121;
    padding: 25px;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .Dival {
    margin: 0px 0px;
  }
  footer .Dival .img img {
    width: 86%;
  }
  footer .Dival h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .Dival p {
    font-family: "Poppins_Regular";
    font-size: 10px;
    line-height: 1.5;
    margin: 15px 0px;
  }
  footer .Dival button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
  }
  footer .Dival button a {
    text-decoration: none;
    color: white;
  }
  footer .Dival button a {
    color: #212121;
  }
  footer .NewsLatter h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .NewsLatter p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0px;
  }
  footer .NewsLatter form {
    margin: 15px 0px;
    width: 100%;
  }
  footer .NewsLatter form input {
    -o-object-fit: contain;
       object-fit: contain;
    width: 90%;
    font-family: "Poppins_light";
    font-size: 12px;
    padding: 10px;
  }
  footer .links {
    margin: 0px 0px;
    font-family: "Poppins_Semibold";
    font-size: 20px;
  }
  footer .links h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  footer .links a {
    display: block;
    text-decoration: none;
    font-family: "Poppins_light";
    font-size: 16px;
    margin: 12px 0px;
    color: white;
  }
  footer .Copyrights {
    width: 100%;
  }
  footer .Copyrights p {
    margin: 10px 0px;
    font-family: "Poppins_light";
    font-size: 14px;
    text-align: center;
  }
  footer .box {
    width: 30%;
  }
}

@media (min-width: 1024px) {
  header {
    padding: 0px 4%;
    height: 12vh;
  }
  header .log {
    width: 30%;
  }
  header .log img {
    margin: 0px 0px 0px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .links {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
  }
  header .links ul li {
    margin: 30px 0px;
  }
  header .links ul li a {
    font-size: 30px;
  }
  header .links ul button {
    font-size: 22px;
  }
  header .ghost {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 12%;
  }
  header .ghost .bars {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line {
    width: 100%;
    padding: 5px 0px;
    background-color: #f44323;
    border-radius: 6px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }
  header .ghost .bars .line:nth-child(3) {
    background-color: #f44323;
    position: absolute;
    top: 19px;
    width: 56%;
    border-radius: 6px;
  }
  header .ghost .bars .line:nth-child(2) {
    background-color: #f44323;
    position: absolute;
    width: 100%;
    top: -19px;
    border-radius: 6px;
  }
  header .ghost .active .line:nth-child(3) {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    width: 90%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
            box-shadow: 2px 2px 2px rgba(124, 123, 123, 0.247);
  }
  header .ghost .active .line:nth-child(2) {
    background-color: #ffffff;
    position: absolute;
    width: 90%;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .ghost .active #dis {
    opacity: 0;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header_active .links {
    display: block;
  }
  .header_active .ghost {
    display: block;
  }
  .banner {
    padding: 8% 0px;
    height: 40vh;
  }
  .banner .overlay .box {
    width: 92%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20% 0px 0px;
    padding: 20px;
  }
  .banner .overlay .box .banner_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px;
    text-align: center;
  }
}

@media (min-width: 1280px) {
  header {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0px 6%;
    height: 13vh;
    background-color: white;
  }
  header .log {
    margin: 5px auto 0px 0px;
    width: 13%;
  }
  header .log img {
    width: 100%;
  }
  header .ghost {
    width: 5%;
    display: none;
  }
  header .links {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    height: initial;
    width: 52%;
    background: transparent;
    position: initial;
  }
  header .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .links ul li {
    margin: 0px 15px;
  }
  header .links ul li a {
    font-size: 16px;
    font-family: "Poppins_bold";
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: black;
  }
  header .links ul li a:hover {
    background-color: #f44323;
    padding: .5rem .8rem;
    border-radius: 5px;
    color: white;
  }
  header .links ul li a:active {
    color: #f44323;
  }
  header .links ul button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #f44323;
    font-size: 14px;
  }
  header .links ul button a {
    text-decoration: none;
    color: white;
  }
  header .links ul button a {
    color: white;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .bars {
    display: none;
  }
  .banner {
    padding: 6% 0px;
    height: 40vh;
  }
  .banner .overlay .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px;
    width: 86%;
  }
  .banner .overlay .box .banner_text {
    width: 44%;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 50px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    text-align: left;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    color: #ffffffd1;
    line-height: 1.8;
    text-align: left;
    margin: 20px 0px;
  }
  .banner .overlay .box .banner_text p span {
    font-family: "Poppins_Semibold";
    color: white;
  }
  .About {
    padding: 7% 7%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .About .text_box {
    margin: 0px 0px;
    width: 40%;
  }
  .About .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: red;
  }
  .About .text_box p {
    font-family: "Poppins_Regular";
    font-size: 15px;
    line-height: 1.8;
    margin: 15px 0px;
  }
  .About .text_box h3 {
    font-family: "Poppins_Semibold";
    font-size: 35px;
  }
  .About .img {
    margin: 0px 0px;
    width: 50%;
  }
  .About .img img {
    width: 100%;
  }
  .Mession {
    padding: 3% 7%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .Mession .text_box {
    margin: 20px 0px;
    width: 43%;
  }
  .Mession .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    color: red;
  }
  .Mession .text_box p {
    font-family: "Poppins_Regular";
    font-size: 21px;
    line-height: 1.7;
    margin: 15px 0px;
  }
  .Mession .img {
    margin: 25px 0px;
    width: 50%;
  }
  .Mession .img img {
    width: 100%;
  }
  .OurValues {
    padding: 5% 25px;
    background-color: #d1d0d0;
  }
  .OurValues h2 {
    font-family: "Poppins_bold";
    font-size: 50px;
    margin: 40px 0px;
    text-align: center;
  }
  .OurValues h2 span {
    color: #f44323;
  }
  .OurValues .Wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .OurValues .Wraper .box {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px;
    margin: 15px 20px;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #f1f1f1;
  }
  .OurValues .Wraper .box .img {
    width: 30%;
  }
  .OurValues .Wraper .box .img img {
    width: 100%;
  }
  .OurValues .Wraper .box .text {
    width: 65%;
  }
  .OurValues .Wraper .box .text h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
  }
  .OurValues .Wraper .box .text p {
    font-family: "Poppins_Regular";
    font-size: 9px;
    line-height: 1.8;
    margin: 5px 0;
  }
  .Members {
    padding: 5% 7%;
  }
  .Members h2 {
    font-family: "Poppins_bold";
    font-size: 40px;
    margin: 50px 0px;
    text-align: center;
  }
  .Members h2 span {
    color: #f44323;
  }
  .Members .boxes .box {
    position: relative;
  }
  .Members .boxes .box .img img {
    width: 100%;
  }
  .Members .boxes .box .title {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ea1b1bbf;
    padding: 15px;
  }
  .Members .boxes .box .title h3 {
    font-family: "Poppins_bold";
    font-size: 22px;
    color: white;
    text-align: center;
  }
  .Members .boxes .box .title h4 {
    font-family: "Poppins_Regular";
    font-size: 18px;
    color: white;
    text-align: center;
    margin: 4px;
  }
  .Members .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 15px 0px;
  }
  .Members .slick-dots li {
    margin: 0px 5px;
  }
  .Members .slick-dots li button {
    color: white;
    font-family: "Poppins_bold";
    background-color: #f44323;
    border: none;
    padding: 10px;
    font-size: 0;
    border-radius: 10px;
  }
  .Members .slick-dots .slick-active button {
    background-color: #9f9f9f;
  }
  .Members .slider {
    width: 50%;
    margin: 100px auto;
    background-color: #0D0D2B;
  }
  .Members .slick-slide {
    margin: 10px 5px;
  }
  .Members .slick-slide img {
    width: 100%;
  }
  .Members .slick-prev:before,
  .Members .slick-next:before {
    color: red;
  }
  .Members .slick-slide {
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    opacity: .2;
  }
  .Members .slick-active {
    opacity: 1;
  }
  .Members .slick-current {
    opacity: 1;
  }
  footer {
    background-color: #212121;
    padding: 5% 7% 2%;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .Dival {
    margin: 0px 0px;
  }
  footer .Dival .img img {
    width: 80%;
  }
  footer .Dival h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
    margin: 10px 0px;
  }
  footer .Dival p {
    font-family: "Poppins_Regular";
    font-size: 12px;
    line-height: 1.5;
    margin: 10px 0px;
  }
  footer .Dival button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
    font-size: 14px;
  }
  footer .Dival button a {
    text-decoration: none;
    color: white;
  }
  footer .Dival button a {
    color: #212121;
  }
  footer .NewsLatter h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .NewsLatter p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 20px 0px;
  }
  footer .NewsLatter form {
    margin: 15px 0px;
    width: 100%;
  }
  footer .NewsLatter form input {
    -o-object-fit: contain;
       object-fit: contain;
    width: 90%;
    font-family: "Poppins_light";
    font-size: 12px;
    padding: 10px;
  }
  footer .links {
    margin: 0px 0px;
    font-family: "Poppins_Semibold";
    font-size: 20px;
    width: 20%;
  }
  footer .links h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  footer .links a {
    display: block;
    text-decoration: none;
    font-family: "Poppins_light";
    font-size: 16px;
    margin: 12px 0px;
    color: white;
  }
  footer #links {
    width: 20%;
  }
  footer .Copyrights {
    width: 100%;
    margin: 20px 0px 0;
  }
  footer .Copyrights p {
    font-family: "Poppins_light";
    font-size: 14px;
    text-align: center;
  }
  footer .box {
    width: 30%;
  }
}

@media (min-width: 1440px) {
  header {
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0px 6%;
    height: 14vh;
    background-color: white;
  }
  header .log {
    margin: 5px auto 0px 0px;
    width: 15%;
  }
  header .log img {
    width: 100%;
  }
  header .ghost {
    width: 5%;
    display: none;
  }
  header .links {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    height: initial;
    width: 47%;
    background: transparent;
    position: initial;
  }
  header .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .links ul li {
    margin: 0px 15px;
  }
  header .links ul li a {
    font-size: 17px;
    font-family: "Poppins_Semibold";
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: black;
  }
  header .links ul li a:hover {
    background-color: #f44323;
    padding: .5rem .8rem;
    border-radius: 5px;
    color: white;
  }
  header .links ul li a:active {
    color: #f44323;
  }
  header .links ul button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #f44323;
    font-size: 14px;
  }
  header .links ul button a {
    text-decoration: none;
    color: white;
  }
  header .links ul button a {
    color: white;
  }
  header .open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  header .bars {
    display: none;
  }
  .banner {
    padding: 6% 0px;
    height: 56vh;
  }
  .banner .overlay .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0px;
    width: 86%;
  }
  .banner .overlay .box .banner_text {
    width: 40%;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 50px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    text-align: left;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    color: #ffffffd1;
    line-height: 1.8;
    text-align: left;
    margin: 20px 0px;
  }
  .banner .overlay .box .banner_text p span {
    font-family: "Poppins_Semibold";
    color: white;
  }
  .About {
    padding: 8% 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .About .text_box {
    margin: 0px 0px;
    width: 40%;
  }
  .About .text_box h2 {
    font-family: "Poppins_bold";
    font-size: 45px;
    color: red;
  }
  .About .text_box p {
    font-family: "Poppins_Regular";
    font-size: 18px;
    line-height: 1.8;
    margin: 15px 0px;
  }
  .About .text_box h3 {
    font-family: "Poppins_Semibold";
    font-size: 30px;
  }
  .About .text_box button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    margin: 12px 0px;
  }
  .About .text_box button a {
    text-decoration: none;
    color: white;
  }
  .About .img {
    margin: 0px 0px;
    width: 50%;
  }
  .About .img img {
    width: 100%;
  }
  .OurValues {
    padding: 7%;
    background-color: #d1d0d061;
  }
  .OurValues h2 {
    font-family: "Poppins_bold";
    font-size: 60px;
    margin: 40px 0px;
    text-align: center;
  }
  .OurValues h2 span {
    color: #f44323;
  }
  .OurValues .Wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .OurValues .Wraper .box {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px;
    margin: 15px 20px;
    border-radius: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: -10px 9px 7px 0px #21212126;
            box-shadow: -10px 9px 7px 0px #21212126;
    background-color: #f1f1f1;
  }
  .OurValues .Wraper .box .img {
    width: 33%;
  }
  .OurValues .Wraper .box .img img {
    width: 100%;
  }
  .OurValues .Wraper .box .text {
    width: 63%;
  }
  .OurValues .Wraper .box .text h3 {
    font-family: "Poppins_Semibold";
    font-size: 14px;
  }
  .OurValues .Wraper .box .text p {
    font-family: "Poppins_Regular";
    font-size: 10px;
    line-height: 1.8;
    margin: 5px 0;
  }
  footer {
    background-color: #212121;
    padding: 5% 7% 2%;
    color: white;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .Dival {
    margin: 0px 0px;
  }
  footer .Dival .img img {
    width: 80%;
  }
  footer .Dival h3 {
    font-family: "Poppins_Semibold";
    font-size: 16px;
    margin: 10px 0px;
  }
  footer .Dival p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0px;
  }
  footer .Dival button {
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    font-size: 16px;
    font-family: "Poppins_bold";
    text-decoration: none;
    color: #f44323;
    background: #f44323;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
    margin: 0 auto;
    font-size: 14px;
  }
  footer .Dival button a {
    text-decoration: none;
    color: white;
  }
  footer .Dival button a {
    color: #212121;
  }
  footer .NewsLatter h3 {
    font-family: "Poppins_Semibold";
    font-size: 22px;
    margin: 10px 0px;
  }
  footer .NewsLatter p {
    font-family: "Poppins_Regular";
    font-size: 14px;
    line-height: 1.5;
    margin: 20px 0px;
  }
  footer .NewsLatter form {
    margin: 15px 0px;
    width: 100%;
  }
  footer .NewsLatter form input {
    -o-object-fit: contain;
       object-fit: contain;
    width: 90%;
    font-family: "Poppins_light";
    font-size: 12px;
    padding: 10px;
  }
  footer .links {
    margin: 0px 0px;
    font-family: "Poppins_Semibold";
    font-size: 20px;
    width: 20%;
  }
  footer .links h3 {
    font-family: "Poppins_Semibold";
    font-size: 25px;
  }
  footer .links a {
    display: block;
    text-decoration: none;
    font-family: "Poppins_light";
    font-size: 16px;
    margin: 12px 0px;
    color: white;
  }
  footer #links {
    width: 20%;
  }
  footer .Copyrights {
    width: 100%;
    margin: 20px 0px;
  }
  footer .Copyrights p {
    font-family: "Poppins_light";
    font-size: 14px;
    text-align: center;
  }
  footer .box {
    width: 30%;
  }
}
/*# sourceMappingURL=AboutUs.css.map */