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: 92vh;
  width: 100vw;
  background-image: url(../Images/contactUS.jpg);
  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;
}

.banner .overlay .box .banner_text p {
  font-family: "Poppins_light";
  font-size: 14px;
  color: white;
  line-height: 1.5;
  text-align: center;
  margin: 10px 0px;
}

.Contact {
  padding: 7% 6%;
  background-color: #e3e3fc;
}

.Contact .text {
  margin: 20px 0px;
}

.Contact .text h2 {
  color: #f44323;
  font-family: "Poppins_bold";
  font-size: 20px;
  margin: 20px auto;
  text-transform: uppercase;
}

.Contact .text p {
  font-size: 14px;
  line-height: 1.5;
  color: #212121;
  margin: 0px 0px 20px;
  font-family: "Poppins_Regular";
}

.Contact .text .detials .box {
  margin: 15px 0px;
}

.Contact .text .detials .box h3 {
  font-family: "Poppins_bold";
  font-size: 14px;
  color: #212121;
  margin: 8px 0px;
  text-transform: uppercase;
  color: #f44323;
}

.Contact .text .detials .box h4 {
  font-size: 11px;
  line-height: 1.5;
  margin: 5px 0px;
}

.Contact .text .detials .box .sub_box {
  margin: 0px 0px 0px 10px;
}

.Contact .text .detials .box .sub_box span {
  font-family: Poppins_bold;
  font-size: 13px;
  color: #212121;
  margin: 8px 0px;
  text-transform: uppercase;
  margin: 5px 0px;
}

.Contact .form {
  margin: 15px 0px;
  padding: 4%;
  background-color: white;
}

.Contact .form form {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.Contact .form form input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-size: 14px;
  outline: none;
  padding: .8rem 0.3rem;
  margin: 12px 0px;
  background-color: #e9e6e6;
  border: none;
}

.Contact .form form input::-webkit-input-placeholder {
  font-family: "Poppins_Regular";
}

.Contact .form form input:-ms-input-placeholder {
  font-family: "Poppins_Regular";
}

.Contact .form form input::-ms-input-placeholder {
  font-family: "Poppins_Regular";
}

.Contact .form form input::placeholder {
  font-family: "Poppins_Regular";
}

.Contact .form form textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 26vh;
  font-size: 14px;
  outline: none;
  padding: 1.8rem 0.6rem;
  background-color: #f3f2f2;
  border: none;
  font-family: "Poppins_Regular";
  margin: 10px 0px;
}

.Contact .form form #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;
  width: 100%;
  font-size: 14px;
  background: #f44323;
  color: white;
}

.Contact .form form #button a {
  text-decoration: none;
  color: white;
}

.Contact .form form #button::-webkit-input-placeholder {
  font-family: "Poppins_Regular";
  color: white;
}

.Contact .form form #button:-ms-input-placeholder {
  font-family: "Poppins_Regular";
  color: white;
}

.Contact .form form #button::-ms-input-placeholder {
  font-family: "Poppins_Regular";
  color: white;
}

.Contact .form form #button::placeholder {
  font-family: "Poppins_Regular";
  color: white;
}

.Map {
  overflow: hidden;
  padding: 0;
}

.Map .location {
  width: 100%;
  height: 100%;
}

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: 100%;
}

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;
  }
  .Contact {
    padding: 9% 6%;
    background-color: #e3e3fc;
    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;
  }
  .Contact .text {
    margin: 0px 0px;
    width: 40%;
  }
  .Contact .text h2 {
    color: #f44323;
    font-family: "Poppins_bold";
    text-align: left;
    font-size: 16px;
    margin: 10px auto;
    text-transform: uppercase;
  }
  .Contact .text p {
    font-family: "Poppins_Regular";
    font-size: 12px;
    text-align: left;
    line-height: 1.5;
    color: #0D0D2B;
    margin: 0px 0px 20px;
    width: 100%;
  }
  .Contact .text .detials .box {
    margin: 15px 10px;
  }
  .Contact .text .detials .box h3 {
    font-family: "Poppins_bold";
    font-size: 12px;
    color: #212121;
    margin: 8px 0px;
    text-transform: uppercase;
    color: #f44323;
  }
  .Contact .text .detials .box h4 {
    font-family: "Poppins_Regular";
    font-size: 11px;
    line-height: 1.5;
    margin: 5px 0px;
  }
  .Contact .text .detials .box .sub_box {
    margin: 0px 0px 0px 10px;
  }
  .Contact .text .detials .box .sub_box span {
    font-family: Poppins_bold;
    font-size: 13px;
    margin: 8px 0px;
    text-transform: uppercase;
    margin: 5px 0px;
  }
  .Contact .form {
    width: 47%;
    margin: 0px 0px;
    padding: 4%;
    background-color: white;
  }
  .Contact .form form {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .Contact .form form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    outline: none;
    padding: .8rem 0.3rem;
    margin: 12px 0px;
    background-color: #e9e6e6;
    border: none;
  }
  .Contact .form form input::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input:-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input::-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input::placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 30vh;
    font-size: 14px;
    outline: none;
    padding: 1.8rem 0.6rem;
    background-color: #f3f2f2;
    border: none;
    font-family: "Poppins_Regular";
    margin: 10px 0px;
  }
  .Contact .form form #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;
    width: 100%;
    font-size: 14px;
    background: #040449;
  }
  .Contact .form form #button a {
    text-decoration: none;
    color: white;
  }
  .Contact .form form #button::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button:-ms-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button::-ms-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button::placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Map .location {
    width: 100%;
    height: 80vh;
  }
}

@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: 53vh;
  }
  .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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 30% 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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 50px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px;
    text-align: center;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_light";
    font-size: 20px;
    color: white;
    line-height: 1.5;
    text-align: left;
    margin: 20px 39% 20px 0;
  }
  .Contact {
    padding: 5% 6%;
    background-color: #e3e3fc;
    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;
  }
  .Contact .text {
    margin: 0px 0px;
    width: 40%;
  }
  .Contact .text h2 {
    color: #f44323;
    font-family: "Poppins_bold";
    text-align: left;
    font-size: 20px;
    margin: 10px auto;
    text-transform: uppercase;
  }
  .Contact .text p {
    font-family: "Poppins_Regular";
    font-size: 13px;
    text-align: left;
    line-height: 1.5;
    margin: 0px 0px 20px;
    width: 100%;
  }
  .Contact .text .detials .box {
    margin: 15px 0px;
  }
  .Contact .text .detials .box h3 {
    font-family: "Poppins_bold";
    font-size: 12px;
    color: #212121;
    margin: 8px 0px;
    text-transform: uppercase;
    color: #f44323;
  }
  .Contact .text .detials .box h4 {
    font-family: "Poppins_Regular";
    font-size: 11px;
    line-height: 1.5;
    margin: 5px 0px;
  }
  .Contact .text .detials .box .sub_box {
    margin: 0px 0px 0px 10px;
  }
  .Contact .text .detials .box .sub_box span {
    font-family: Poppins_bold;
    font-size: 13px;
    margin: 8px 0px;
    text-transform: uppercase;
    margin: 5px 0px;
  }
  .Contact .form {
    width: 47%;
    margin: 15px 0px;
    padding: 4%;
    background-color: white;
  }
  .Contact .form form {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .Contact .form form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    outline: none;
    padding: .8rem 0.3rem;
    margin: 12px 0px;
    background-color: #e9e6e6;
    border: none;
  }
  .Contact .form form input::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input:-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input::-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input::placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 14vh;
    font-size: 14px;
    outline: none;
    padding: 1.8rem 0.6rem;
    background-color: #f3f2f2;
    border: none;
    font-family: "Poppins_Regular";
    margin: 10px 0px;
  }
  .Contact .form form #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: 14px;
    background-color: #f44323;
    color: white;
    width: 66%;
  }
  .Contact .form form #button a {
    text-decoration: none;
    color: white;
  }
  .Contact .form form #button::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button:-ms-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button::-ms-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button::placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Map .location {
    width: 100%;
    height: 100%;
  }
  .Map .location iframe {
    width: 100%;
  }
  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: 45vh;
  }
  .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: 80%;
  }
  .banner .overlay .box .banner_text {
    width: 47%;
  }
  .banner .overlay .box .banner_text h1 {
    font-family: "Poppins_bold";
    font-size: 38px;
    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: 10px 0px;
  }
  .banner .overlay .box .banner_text p span {
    font-family: "Poppins_Semibold";
    color: white;
  }
  .banner .overlay .box .banner_form {
    width: 37%;
    margin: 10px 0px;
    padding: 5% 20px;
  }
  .banner .overlay .box .banner_form form {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner .overlay .box .banner_form form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 96%;
    font-size: 14px;
    outline: none;
    padding: .8rem 0.7rem;
    margin: 10px 0px;
    background-color: #f3f2f2;
    border: none;
  }
  .banner .overlay .box .banner_form form input::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form input:-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form input::-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form input::placeholder {
    font-family: "Poppins_Regular";
  }
  .banner .overlay .box .banner_form form #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;
    width: 100%;
  }
  .banner .overlay .box .banner_form form #button a {
    text-decoration: none;
    color: white;
  }
}

@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: 50vh;
  }
  .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: 65px;
    color: white;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    text-align: left;
  }
  .banner .overlay .box .banner_text p {
    font-family: "Poppins_Regular";
    font-size: 25px;
    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;
  }
  .Contact {
    padding: 5% 6%;
    background-color: #e3e3fc;
    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;
  }
  .Contact .text {
    margin: 0px 0px;
    width: 42%;
  }
  .Contact .text h2 {
    color: #f44323;
    font-family: "Poppins_bold";
    text-align: left;
    font-size: 26px;
    margin: 20px auto;
    text-transform: uppercase;
  }
  .Contact .text p {
    font-family: #f44323;
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
    color: #0D0D2B;
    margin: 0px 0px 20px;
    width: 100%;
  }
  .Contact .text .detials .box {
    margin: 20px 0px;
  }
  .Contact .text .detials .box h3 {
    font-family: "Poppins_bold";
    font-size: 18px;
    color: #212121;
    margin: 8px 0px;
    text-transform: uppercase;
    color: #f44323;
  }
  .Contact .text .detials .box h4 {
    font-family: "Poppins_Regular";
    font-size: 13px;
    line-height: 1.5;
    margin: 8px 0px;
  }
  .Contact .text .detials .box .sub_box {
    margin: 0px 0px 0px 10px;
  }
  .Contact .text .detials .box .sub_box span {
    font-family: Poppins_bold;
    font-size: 13px;
    margin: 8px 0px;
    text-transform: uppercase;
    color: #f44323;
    margin: 5px 0px;
  }
  .Contact .form {
    width: 35%;
    margin: 15px 0px;
    padding: 4%;
    background-color: white;
  }
  .Contact .form form {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .Contact .form form input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    font-size: 17px;
    outline: none;
    padding: .8rem 0.3rem;
    margin: 7px 0px;
    background-color: #e9e6e6;
    border: none;
  }
  .Contact .form form input::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input:-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input::-ms-input-placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form input::placeholder {
    font-family: "Poppins_Regular";
  }
  .Contact .form form textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 14vh;
    font-size: 14px;
    outline: none;
    padding: 1.8rem 0.6rem;
    background-color: #f3f2f2;
    border: none;
    font-family: "Poppins_Regular";
    margin: 10px 0px;
  }
  .Contact .form form #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: 14px;
    background-color: #f44323;
    color: white;
    width: 49%;
  }
  .Contact .form form #button a {
    text-decoration: none;
    color: white;
  }
  .Contact .form form #button::-webkit-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button:-ms-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button::-ms-input-placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Contact .form form #button::placeholder {
    font-family: "Poppins_Regular";
    color: white;
  }
  .Map .location {
    width: 100%;
    height: 47vh;
  }
  .Map .location iframe {
    width: 100%;
  }
  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;
  }
  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=contactus.css.map */