/*================
    Font kit
=================*/
@font-face {
  font-family: "GiovanniStd-Bold";
  src: url("../fonts/GiovanniStd-Bold.woff2") format("woff2"),
    url("../fonts/GiovanniStd-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "URWDINArabic-Demi";
  src: url("../fonts/URWDINArabic-Demi.woff2") format("woff2"),
    url("../fonts/URWDINArabic-Demi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "robotoregular";
  src: url("../fonts/roboto-regular-webfont.woff2") format("woff2"),
    url("../fonts/roboto-regular-webfont.woff") format("woff");
  font-weight: 400l;
  font-style: normal;
}

@font-face {
  font-family: "robotobold";
  src: url("../fonts/roboto-bold-webfont.woff2") format("woff2"),
    url("../fonts/roboto-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/*================
      Base
=================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --p-yellow: #fec627;
  --p-green: #37b44a;
  --p-blue: #002e5f;
  --p-black: #2b2b2b;
  --p-light-black: #707175;
  --s-grey-one: #ebebeb;
  --s-white-smoke: #f5f5f5;
  --s-light-grey: #fafafa;
  --s-white: #fff;
}

html {
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  font-family: "robotoregular";
  font-weight: 400;
}

h1 {
  font-size: 70px;
  line-height: 1;
  font-family: "GiovanniStd-Bold";
  font-weight: 700;
}

h2 {
  font-size: 50px;
  line-height: 1.1;
  font-family: "GiovanniStd-Bold";
  font-weight: 700;
}

h3 {
  font-size: 43px;
  line-height: 1.1;
  font-family: "GiovanniStd-Bold";
  font-weight: 700;
}

h4 {
  font-size: 37px;
  line-height: 1.1;
  font-family: "GiovanniStd-Bold";
  font-weight: 700;
}

h5 {
  font-size: 24px;
  line-height: 1.2;
  font-family: "GiovanniStd-Bold";
  font-weight: 700;
}

h6 {
  font-size: 17px;
  line-height: 1.2;
  font-family: "robotobold";
  font-weight: 700;
}

p {
  font-size: 17px;
  line-height: 1.47;
  font-weight: 400;
}

p.lead {
  font-size: 15px;
  line-height: 1.4;
  font-family: "robotoregular";
  font-weight: 400;
}

button,
.btn {
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 15px;
  font-family: "URWDINArabic-Demi";
  font-weight: 500;
  -webkit-appearance: none;
  border: none;
  border-radius: 5px;
  min-width: 220px;
  padding: 17px 20px;
  background-color: var(--p-green);
  color: #fff;
  opacity: 1;
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
  margin: 0 10px 10px 10px;
}

button:hover,
.btn:hover,
button:focus,
.btn:focus {
  opacity: 0.9;
}

.btn-yellow {
  background-color: var(--p-yellow);
  color: #000;
  opacity: 0.9;
}

.btn-yellow:hover,
.btn-yellow:focus {
  opacity: 1;
}

.btn-blue {
  background-color: var(--p-blue);
}

.btn-wrapper {
  display: flex;
  margin: 0 -10px;
  width: calc(100% + 10px);
}

.btn-text {
  text-transform: uppercase;
  font-size: 19px;
  padding-top: 22px;
  color: #fff;
  line-height: 1.2;
  font-family: "robotobold";
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s;
}

.btn-text:hover {
  opacity: 0.8;
}

a {
  font-family: inherit;
  font-weight: inherit;
  color: #002e5f;
  text-decoration: none;
}

p a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*-------form---------*/
input::placeholder,
select,
textarea::placeholder {
  font-family: "robotobold";
  font-size: 16px;
  color: #b2c0cf;
}

.form-field input,
.form-field select {
  border: 2px solid #c9cacc;
  border-radius: 5px;
  width: 100%;
  text-transform: uppercase;
  height: 50px;
}

input:focus,
select:focus,
textarea:focus {
  border: 2px solid #b2c0cf;
  outline: none;
}

.form-field textarea {
  border: 2px solid #c9cacc;
  border-radius: 7px;
  width: 100% !important;
  text-transform: uppercase;
  padding: 12px 15px 8px;
  min-height: 140px;
  resize: none;
}

.main-container {
  max-width: 2000px;
  margin: auto;
}

.container {
  max-width: 1203px;
  margin: 0 auto;
  padding: 0 15px;
}

/*------header-------*/
header {
  padding: 11px 0;
  border-top: 5px solid #53b94d;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

header .container {
  max-width: 1440px;
}

.logos {
  display: flex;
}

.logo {
  padding: 3px 20px;
}

.header-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 -20px;
  width: calc(100% + 35px);
}

header .container {
  max-width: 1408px;
}

.nav-logo1 {
  transition: all 0.3s;
  cursor: pointer;
}

.nav-logo1:hover {
  opacity: 0.8;
}

.logo {
  position: relative;
  height: 48px;
  max-width: 187px;
}

.logos img {
  max-width: 100%;
  max-height: 100%;
}

.logo:before {
  position: absolute;
  content: "";
  width: 100%;
  right: 1px;
  height: 100%;
  border-right: 1px solid var(--p-light-black);
}

.logo:nth-of-type(3):before {
  width: 0%;
  height: 0%;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  margin: 0 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #002e5f;
  font-size: 16px;
  line-height: 1.2;
  word-break: break-all;
  font-weight: 600;
  padding: 0 15px;
  position: relative;
}

.nav-menu a:before {
  content: " ";
  position: absolute;
  bottom: -3px;
  left: 50%;
  background-color: #53b94d;
  width: 0;
  height: 2px;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.6s;
  transform: translateX(-50%);
}

.nav-menu a:hover::before {
  width: 73%;
}

.nav-btn .btn {
  min-width: 128px;
  padding: 10px 20px;
  display: inline-block;
  margin: 0px 20px 0 15px;
}

.btn a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.toggler {
  display: none;
  cursor: pointer;
  transition: all 0.3s;
}

.toggler:hover {
  opacity: 0.6;
}

.toggler i {
  font-size: 20px;
}

/*-----hero-sec*/
.hero-sec {
  background: url("../images/homepage-hero-bg.png") no-repeat;
  background-size: cover;
  min-height: 677px;
  padding: 50px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-sec .container {
  max-width: 950px;
}

.hero-sec h1,
.hero-sec p {
  color: #fff;
  text-align: center;
  width: 100%;
}

.hero-sec h1 {
  font-size: 70px;
}

.hero-sec p {
  text-transform: uppercase;
  font-size: 21px;
  font-family: "robotobold";
  padding-top: 24px;
}

.hero-sec h1 span {
  color: #fec627;
  position: relative;
  display: inline-block;
}

.hero-sec h1 span::before {
  content: "";
  position: absolute;
  background: url("../images/txt-underline.png") no-repeat bottom;
  width: 100%;
  height: 95px;
}

.about-partnership {
  background: var(--s-light-grey) url("../images/home-about-bg.png") no-repeat top right;
  background-size: 65% 100%;
  min-height: 744px;
  padding: 80px 0;
}

.about-ps-content {
  padding: 54px 71px 41px;
  background: #fff;
  max-width: 670px;
  width: 100%;
}

.about-ps-content p {
  margin-top: 22px;
}

.about-ps-content .btn-wrapper {
  margin-top: 43px;
}

.about-ps-content h2 {
  color: var(--p-blue);
}

/*---our action plan sec---*/
.action-plan-sec {
  background-color: var(--s-white-smoke);
  padding: 102px 0 30px;
}

.action-plan-content h2 {
  color: var(--p-blue);
}

.action-plan .container {
  max-width: 1063px;
}

.action-plan h3 {
  color: var(--p-blue);
}

.A-P-btn {
  padding-top: 28px;
}

/*-----plans box sec-----*/
.plans {
  margin: -179px 0 0;
  min-height: 645px;
}

.plans .container {
  max-width: 1220px;
}

.plans-sec-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  max-width: 880px;
  margin-left: auto;
}

.plan-box {
  margin: 10px;
  min-height: 300px;
  max-width: 300px;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border-radius: 6px;
}

.plan-box-content {
  padding: 10px 10px;
}

.plan-box.box1 {
  background-color: var(--p-blue);
}

.plan-box.box2 {
  background-color: var(--p-green);
  top: 140px;
  left: 280px;
}

.plan-box.box3 {
  background-color: var(--p-blue);
  left: 0;
  top: 280px;
}

.plan-box h4 {
  color: #fff;
  font-size: 32px;
  word-break: break-all;
}

.plan-box.box1:before,
.plan-box.box2:before,
.plan-box.box3:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/flip-white-icon.svg");
  background-repeat: no-repeat;
  background-position: 95% 95%;
}

.plan-box:after {
  position: absolute;
  top: 0px;
  left: 10px;
  font-size: 70px;
  font-family: "GiovanniStd-Bold";
}

.box2:after {
  content: "2";
  color: #42943e;
}

.box1:after {
  content: "1";
  color: #3d6188;
}

.box3:after {
  content: "3";
  color: #3d6188;
}

.plan-bg-box {
  position: absolute;
  left: 0;
  width: 100px;
  height: 80px;
  background-color: #e4e4e4;
  bottom: -85px;
  border-bottom-right-radius: 7px;
}

/*----plan box hover-----*/
.tooltiptext {
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 0;
  top: 0;
  border: 0;
  padding: 0 10px;
  box-sizing: border-box;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tooltiptext p {
  padding: 20px;
  margin-top: 30px;
  word-break: break-all;
}

.box1,
.box3 {
  border-bottom: 5px solid var(--p-blue);
}

.box2 {
  border-bottom: 5px solid var(--p-green);
}

.plan-box:hover .tooltiptext {
  height: 100%;
}

/*-----our-partners-sec------*/
.our-partners {
  background-image: url("../images/dotted-map.svg");
  background-color: var(--s-light-grey);
  padding: 84px 0 0;
}

.our-partners .container {
  max-width: 1190px;
}

.partner img {
  max-width: 100%;
  max-height: 100%;
}

.our-partners-heading h3 {
  color: var(--p-blue);
  text-align: center;
}

.our-partners-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 64px -15px 0;
  width: calc(100% + 30px);
}

.our-partners-content .partner {
  text-align: center;
  margin: 0 15px 52px;
  height: 69px;
  width: calc(25% - 30px);
}

/*----about us // video-sec-----*/
.video-sec {
  padding: 75px 0;
  background: linear-gradient(to bottom, var(--s-white-smoke) 62%, #fff 0%);
}

.video-sec h3 {
  text-align: center;
  color: var(--p-blue);
}

.video-sec .container {
  max-width: 830px;
}

.video-sec h6 {
  margin-top: 18px;
  text-transform: uppercase;
  text-align: center;
  color: var(--p-blue);
  word-spacing: 1.4px;
}

.about-video {
  margin: 45px 0 0;
}

.about-video iframe {
  border-radius: 8px;
  width: 100%;
  height: 407px;
}

/*-----solution within reach sec---*/
.sol-within-reach {
  padding: 91px 0;
}

.SWR-content h2 {
  color: var(--p-blue);
  text-transform: capitalize;
}

.SWR-content p {
  margin-top: 14px;
}

.SWR-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.SWR-content {
  width: calc(100% - 432px);
  padding: 25px 85px 25px 0;
  align-self: center;
}

.SWR-img {
  position: relative;
  z-index: 10;
}

.SWR-img img {
  width: 100%;
  height: 100%;
}

.SWR-img-wrapper {
  position: relative;
  max-width: 390px;
  margin-right: 42px;
  width: 100%;
  padding: 41px 31px 39px 31px;
}

.SWR-img-wrapper:before {
  position: absolute;
  content: "";
  background-color: var(--p-green);
  right: 0;
  top: 0;
  width: 150px;
  height: 150px;
}

.SWR-img-wrapper:after {
  position: absolute;
  content: "";
  background-color: var(--p-blue);
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
}

.SWR-btn {
  margin-top: 44px;
}

.SWR-btn .btn {
  padding: 17px 25px;
}

/*--p-brand-logo-sec--*/
.p-brand-logo-sec {
  background-color: var(--s-white-smoke);
  padding: 80px 0;
}

.p-brand-logo-sec .container {
  max-width: 1206px;
}

.brand-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -13px;
  width: calc(100% + 26px);
}

.brand-logo-box {
  background-color: #fff;
  width: calc(25% - 26px);
  margin: 10px 13px;
  padding: 32px 32px 43px;
  border-radius: 5px;
}

.logo-box-img img {
  max-height: 100%;
  max-width: 100%;
}

.logo-box-img {
  position: relative;
  height: 64px;
  max-width: 210px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
}

.logo-box-img:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 93px;
  border-bottom: 2px dashed var(--p-green);
}

.logo-box-content {
  min-height: 167px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.logo-box-content h6 {
  color: var(--p-blue);
  margin-top: 20px;
  position: relative;
  z-index: 3;
  line-height: 1.4;
}

.brand-logo-box {
  position: relative;
}

.brand-logo-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/flip-dark-icon.svg);
  background-repeat: no-repeat;
  background-position: 96% 98%;
  opacity: 0.1;
}

.brand-logo-btn {
  margin-top: 52px;
  justify-content: center;
}

/*-------explore-knowledge sec-----*/
.explore-knowledge h2 {
  text-transform: capitalize;
  color: var(--p-blue);
  text-align: center;
}

.explore-knowledge {
  padding: 84px 0;
}

.explore-knowledge .explore-knowledge-wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.explore-knowledge .post {
  min-height: 412px;
  display: flex;
  align-items: flex-end;
  width: 33.333%;
  position: relative;
}

.explore-knowledge .post:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(36, 65, 87, 0.9);
  opacity: 0.3;
}

.post-content {
  z-index: 10;
  padding: 33px 37px 33px 40px;
}

.explore-knowledge .post-one {
  background: url("../images/home-resource-img1.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.explore-knowledge .post-two {
  background: url("../images/home-resource-img2.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.explore-knowledge .post-three {
  background: url("../images/home-resource-img3.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.explore-knowledge .post h5 {
  color: #fff;
  line-height: 1.23;
}

.explore-res-btn {
  margin-top: 51px;
  justify-content: center;
}

.explore-res-btn button {
  font-size: 15px;
}

/*------building-market section----*/
.building-market {
  padding: 83px 0 0 14.8%;
}

.building-market-wrapper {
  padding-left: 10%;
}

.BM-content-wrapper {
  margin: 49px 0 0 auto;
  max-width: 1104px;
  padding: 15px 40px 74px;
  background-color: var(--s-white-smoke);
}

.BM-content-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 1018px;
  margin: 0 -50px;
  width: calc(100% + 50px);
}

.BM-content-box {
  width: calc(50% - 100px);
  margin: 0 50px 0 0;
  padding: 30px 50px 24px;
}

.BM-heading {
  color: var(--p-blue);
  text-transform: capitalize;
  padding: 0 43px;
}

.BM-heading {
  counter-reset: section;
  position: relative;
}

.BM-heading h3:before {
  position: absolute;
  counter-increment: section;
  content: counter(section) ". ";
  left: -3px;
}

.BM-heading span {
  text-transform: lowercase;
}

.BM-content-box h4 {
  color: var(--p-blue);
  text-transform: capitalize;
  font-size: 32px;
  line-height: 1.16;
}

.BM-content-box p {
  padding-top: 16px;
}

.BM-img {
  margin-left: -200px;
}

.BM-img img {
  width: 100%;
}

.box-hidden {
  width: calc(50% - 50px);
  padding: 17px 10px 24px;
  margin: 0;
}

/*---latest news -sec---*/

.news-sec {
  padding: 70px 0;
  background-color: var(--s-light-grey);
}

.news-heading {
  max-width: 660px;
  word-spacing: 1.5px;
  margin: auto;
  text-align: center;
}

.news-heading h2 {
  color: var(--p-blue);
  text-transform: capitalize;
}

.news-heading h6 {
  text-transform: uppercase;
  margin-top: 16px;
  color: var(--p-blue);
}

.news-heading span {
  border-bottom: 2px solid var(--p-green);
  width: 110px;
  height: 28px;
  display: inline-block;
}

.l-news-content h5 {
  color: var(--p-blue);
  line-height: 1.27;
}

.l-news-content h6 {
  color: var(--p-blue);
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.l-news-content p {
  margin-top: 21px;
}

.news-sec .container {
  max-width: 1195px;
}

.latest-news-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0 0;
}

.l-news-content-wrapper {
  display: flex;
  width: calc(50% - 50px);
  margin: 0 0 47px;
}

.l-news-content {
  padding: 0 0 0 30px;
}

.l-news-img {
  padding-top: 7px;
  max-width: 69px;
  width: 100%;
}

/*---form sec--*/
.form-sec .container {
  max-width: 813px;
}

.form-sec {
  padding: 80px 0 28px;
  background-color: var(--s-white-smoke);
}

.form-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--s-grey-one);
  padding: 51px 37px;
}

.form-field {
  width: calc(50% - 15px);
  margin: 0 0 30px;
}

#msg-field {
  width: calc(100% - 0px);
}

.form-field select {
  margin: 0 0 0px 0;
  padding: 10px;
}

.form-field input {
  padding: 12px 15px 8px;
}

.form-btn {
  margin: 0 auto;
}

/*--form-info sec--*/
.form-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 46px 37px;
}

.form-content-list i {
  color: var(--p-green);
  transition: all 0.3s;
  font-size: 18px;
}

.link-icon i {
  cursor: pointer;
}

.form-info-head h5 {
  color: var(--p-blue);
}

.link-icon i:hover {
  opacity: 0.8;
}

.form-info-left {
  width: calc(50% - 2px);
}

.form-info-content {
  margin-top: 17px;
}

.form-content-list a {
  font-size: 17px;
  font-family: "robotobold";
  padding: 0 10px;
  color: var(--p-blue);
}

.form-content-list .text {
  font-size: 16px;
  padding: 0 15px;
  letter-spacing: 0.4px;
  line-height: 1.5;
}

.form-content-list {
  margin-top: 19px;
  display: flex;
}

.form-content-list:nth-of-type(1) {
  margin-top: 0;
}

.form-info-left {
  padding-right: 21px;
}

/*----contact-us sec--*/
.contact-us {
  background: linear-gradient(to right, var(--p-green) 63%, transparent 37%);
  color: var(--s-white);
  padding: 15px 15px;
  z-index: 1;
  position: relative;
  margin-top: 30px;
}

.contact-us .container {
  max-width: 1062px;
  width: 100%;
}

.contact-btn a {
  text-decoration: none;
}

.contact-btn i {
  padding: 0 10px;
}

.contact-us-wrapper {
  min-height: 158px;
  display: flex;
  align-items: center;
}

/*---footer--*/
footer {
  background-color: var(--p-blue);
  padding: 20px 0 0;
  border-bottom: 6px solid var(--p-green);
  margin-top: -117px;
}

footer .container {
  max-width: 1097px;
}

.ftr-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0 38px;
  border-bottom: 1px solid #66829f;
}

.ftr-logos-main {
  display: flex;
  align-self: flex-end;
  width: calc(85% - 57px);
  margin: -5px 0;
}

.ftr-menu {
  width: 15%;
  z-index: 1;
}

.ftr-logo {
  padding: 0px 20px;
  position: relative;
  max-height: 48px;
  max-width: 187px;
}

.ftr-logo img {
  max-width: 100%;
  max-height: 100%;
}

.ftr-logo:before {
  position: absolute;
  content: "";
  width: 100%;
  right: 1px;
  height: 100%;
  border-right: 1px solid #fff;
}

.ftr-logo:nth-of-type(1) {
  cursor: pointer;
  transition: all 0.3s;
}

.ftr-logo:nth-of-type(1):hover {
  opacity: 0.8;
}

.ftr-logo:nth-of-type(3):before {
  width: 0%;
  height: 0%;
}

.ftr-menu a {
  color: var(--s-white);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  text-transform: capitalize;
  font-size: 16px;
  font-family: "robotobold";
}

.ftr-menu a:before {
  content: " ";
  position: absolute;
  bottom: -3px;
  left: 50%;
  background-color: #53b94d;
  width: 0;
  height: 2px;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.6s;
  transform: translateX(-50%);
}

.ftr-menu a:hover::before {
  width: 100%;
}

.ftr-menu li {
  padding: 10px 0;
  list-style-type: none;
}

.copyright p {
  color: var(--s-white-smoke);
}

.copyright {
  margin: 25px 18px;
}

.copyright span {
  padding: 0 4px;
}

/*media Queries--*/
@media screen and (max-width: 1200px) {

  .nav-logo2,
  .nav-logo3 {
    display: none !important;
  }

  .logo:before {
    width: 0px;
    height: 0px;
  }

  /*---BM-content--*/
  .BM-img {
    margin-left: -225px;
  }

  .building-market {
    padding: 81px 0 0 0%;
  }

  .building-market-wrapper {
    padding-left: 20%;
  }

  .box-hidden {
    width: calc(50% - 0px);
  }

  .BM-content-box {
    width: calc(50% - 20px);
    margin: 0 10px;
    padding: 30px 10px 24px;
  }

  .BM-content-main {
    max-width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 1024px) {
  .nav-menu {
    display: flex;
    margin: 0 0px;
  }

  .nav-menu a {
    font-size: 15px;
    word-break: break-all;
    padding: 0 10px;
  }

  .nav-btn .btn {
    margin: 0 10px 0;
  }

  .hero-sec h1 {
    font-size: 60px;
  }

  .hero-sec p {
    font-size: 19px;
  }

  .hero-sec {
    min-height: 550px;
  }

  .hero-sec h1 span::before {
    height: 83px;
  }

  .header-wrapper {
    margin: 0px;
    width: calc(100% + 0px);
  }

  /*--about-partnership-sec---*/
  .about-partnership {
    background: var(--s-light-grey) url(../images/home-about-bg.png) no-repeat top right;
    background-size: 100% 100%;
    min-height: 550px;
    padding: 50px 0;
  }

  .about-ps-content {
    margin: auto;
  }

  .action-plan-sec {
    background-color: var(--s-white-smoke);
    padding: 50px 0 50px;
  }

  .plans {
    padding-top: 15px;
  }

  .plans-sec-wrapper {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }

  .plan-box {
    max-width: 100%;
    width: calc(33.33% - 20px);
    position: relative;
  }

  .plan-box.box2,
  .plan-box.box3 {
    top: 0;
    left: 0;
  }

  .plans {
    margin: 0;
    min-height: 100%;
  }

  .A-P-btn {
    padding-top: 10px;
  }

  .plan-box h4 {
    font-size: 30px;
  }

  .plan-bg-box {
    display: none;
  }

  /*---our partners--*/
  .our-partners {
    padding: 50px 0;
  }

  .our-partners-content .partner {
    width: calc(33.33% - 20px);
    margin: 15px 10px;
  }

  /*---video-sec--*/
  .video-sec h3 {
    font-size: 35px;
  }

  .video-sec {
    padding: 50px 0;
  }

  /*--SWR-sec*/
  .sol-within-reach {
    padding: 50px 0;
  }

  .SWR-img-wrapper {
    max-width: 360px;
  }

  .SWR-img-wrapper {
    margin-right: 0;
  }

  .SWR-content {
    width: calc(100% - 360px);
    padding: 20px 38px 20px 0;
  }

  .SWR-content h2 {
    font-size: 40px;
  }

  .SWR-content p {
    font-size: 15px;
  }

  /*--partnership-brand-logo-sec--*/
  .brand-logo-box {
    width: calc(50% - 26px);
  }

  .p-brand-logo-sec {
    padding: 30px 0;
  }

  /*---explore-knowledge-sec--*/
  .explore-knowledge {
    padding: 50px 0;
  }

  .explore-knowledge .post h5 {
    color: #fff;
    font-size: 20px;
  }

  .explore-knowledge .post {
    min-height: 300px;
  }

  .explore-knowledge .explore-knowledge-wrapper {
    margin-top: 30px;
  }

  .explore-knowledge h2 {
    font-size: 40px;
  }

  .BM-heading h3 {
    font-size: 30px;
  }

  .BM-content-box h4 {
    font-size: 27px;
  }

  .BM-img {
    padding-left: 15px;
  }

  /*--latest- news sec--*/
  .l-news-content-wrapper {
    display: flex;
    width: calc(50% - 25px);
    margin: 0 0 30px;
  }

  .l-news-content h5 {
    font-size: 20px;
  }

  .l-news-content p {
    font-size: 15px;
  }

  .l-news-content h6 {
    font-size: 13px;
  }

  .news-heading h2 {
    font-size: 40px;
  }

  .news-heading h6 {
    font-size: 14px;
  }

  .news-sec {
    padding: 50px 0;
  }

  .latest-news-main {
    margin: 40px 0 0;
  }

  /*---form-sec---*/
  .form-sec {
    padding: 50px 0 25;
  }

  .form-main {
    padding: 30px 27px;
  }

  .form-field {
    width: calc(50% - 8px);
    margin: 0 0 25px;
  }

  /*----form-info-sec--*/
  .form-info {
    padding: 35px 37px;
  }

  /*--contact-us sec--*/
  .contact-us h2 {
    font-size: 40px;
  }

  .ftr-logos-main {
    width: calc(80% - 57px);
  }

  .ftr-menu {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .toggler {
    display: block;
  }

  header .logos {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo2,
  .nav-logo3 {
    display: none;
  }

  #menu {
    display: none;
  }

  .nav-menu .menu-item {
    margin: 15px 0px;
  }

  .nav-menu {
    flex-direction: column;
    margin: 25px 0;
  }

  .nav {
    position: relative;
  }

  #toggler-icon-closer {
    position: absolute;
    top: 0px;
    right: 0px;
  }

  .logo {
    padding: 3px 10px;
  }

  .header-wrapper {
    margin: 0;
    width: calc(100% + 0px);
  }

  /*---hero sec--*/
  .hero-sec h1 span::before {
    height: 75px;
  }

  .hero-sec h1 {
    font-size: 50px;
  }

  .hero-sec p {
    font-size: 16px;
  }

  .about-ps-content h2 {
    font-size: 35px;
  }

  .about-ps-content p {
    font-size: 16px;
  }

  .about-ps-content {
    padding: 35px 35px;
  }

  /*--action plans----*/
  .action-plan-sec,
  .explore-knowledge,
  .news-sec,
  .video-sec {
    padding: 50px 0 50px;
  }

  .plan-box {
    width: calc(50% - 20px);
  }

  .plans-sec-wrapper {
    justify-content: flex-start;
    margin: 0;
    width: 100%;
    width: calc(100% + 0px);
  }

  .plans {
    padding-top: 20px;
  }

  /*----about-video-sec--*/
  .video-sec h3 {
    font-size: 30px;
  }

  .video-sec h6 {
    font-size: 14px;
  }

  /*----our partners sec--*/
  .our-partners {
    padding: 30px 0;
  }

  .our-partners-content .partner {
    width: calc(50% - 20px);
    margin: 20px 10px;
  }

  .our-partners-content {
    margin: 20px -15px 0;
  }

  /*----sol within-reach--*/
  .sol-within-reach {
    padding: 50px 0;
  }

  .SWR-wrapper {
    flex-direction: column-reverse;
  }

  .SWR-img-wrapper {
    max-width: 452px;
  }

  .SWR-content {
    width: calc(100% - 0px);
    padding: 60px 0px 0px 0;
  }

  .SWR-content h2 {
    font-size: 35px;
  }

  .brand-logo-btn {
    margin-top: 40px;
  }

  /*----explore-knowledge-sec--*/
  .post-content {
    padding: 20px 20px 20px 20px;
  }

  .explore-knowledge .post {
    width: 100%;
    min-height: 350px;
  }

  .explore-knowledge .explore-knowledge-wrapper {
    margin-top: 20px;
  }

  .explore-res-btn {
    margin-top: 40px;
  }

  /*----BM sec---*/
  .BM-content-box {
    width: calc(100% - 0px);
  }

  .building-market-wrapper {
    padding-left: 0%;
  }

  .BM-heading {
    margin: 0 60px;
  }

  .BM-img {
    margin-left: 0;
    padding-left: 0;
  }

  .box-hidden {
    order: 4;
  }

  .BM-content-wrapper {
    padding: 15px 15px 30px;
  }

  .BM-heading {
    margin: 0 15px;
    padding: 0 0 0 43px;
  }

  .BM-content-box {
    margin: 0 0px;
    padding: 15px 0px 15px;
  }

  .building-market {
    padding: 50px 0 0 0%;
  }

  /*----latest-news sec----*/
  .l-news-content-wrapper {
    width: calc(100% - 0px);
    margin: 0 0 58px;
  }

  .latest-news-main {
    margin: 50px 0 0;
    padding: 0 10px;
  }

  /*----ftr and contact-us sec----*/
  .ftr-logos-main {
    width: calc(100% - 0px);
  }

  .ftr-wrapper {
    flex-direction: column-reverse;
    padding: 130px 0 38px;
  }

  .ftr-menu {
    width: 100%;
    padding: 0 10px;
  }

  .ftr-menu ul li {
    display: inline-block;
    padding: 10px 20px;
  }

  .ftr-logos-main {
    padding: 30px 0 0;
  }

  .contact-us {
    background: linear-gradient(to right, var(--p-green) 100%, transparent 0%);
  }
}

@media screen and (max-width: 600px) {
  .hero-sec h1 span::before {
    height: 67px;
  }

  .hero-sec h1 {
    font-size: 40px;
  }

  .hero-sec p {
    font-size: 15px;
  }

  .hero-sec {
    min-height: 370px;
  }

  /*----action plans-----*/
  .plan-box {
    width: calc(100% - 0px);
    margin: 10px 0;
  }

  .plan-box {
    height: 250px;
  }

  /*----BM sec----*/
  .building-market {
    padding: 30px 0 0 0%;
  }

  .BM-heading h3 {
    font-size: 26px;
  }

  .BM-content-box h4 {
    font-size: 23px;
  }

  /*--news--*/
  .l-news-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .l-news-content {
    margin-top: 15px;
    padding: 0;
  }

  /*----form-sec-----*/
  .form-sec {
    padding: 30px 0 15px;
  }

  .form-main {
    padding: 30px 10px;
  }

  .form-field {
    width: calc(100% - 0px);
    margin: 0 0 20px;
  }

  /*----form-info----*/
  .form-info-left {
    width: calc(100% - 0px);
    margin: 20px 0;
  }

  .form-info-left {
    padding-right: 21px;
  }

  .form-info {
    padding: 20px 20px;
  }

  /*--contact-us and ftr--sec--*/
  .contact-us h2 {
    font-size: 35px;
  }

  .ftr-menu ul li {
    padding: 6px 5px;
  }

  .ftr-menu {
    padding: 0;
    text-align: center;
  }

  .ftr-logo {
    padding: 0px 10px;
  }

  .ftr-logo img {
    max-width: 100%;
  }

  .ftr-logos-main {
    justify-content: center;
  }

  .copyright p {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .about-video iframe {
    height: 300px;
  }

  /*--p-brand-logo-sec--*/
  .brand-logo-box {
    width: calc(100% - 0px);
    margin: 10px 0px;
    padding: 40px 32px 40px;
  }

  .brand-logo-wrapper {
    margin: 0;
    width: calc(100% + 0px);
  }

  .p-brand-logo-sec {
    padding: 30px 0;
  }

  .logo-box-content {
    min-height: 130px;
  }

  /*--explore-knowledge-sec--*/
  .explore-knowledge .post {
    background-size: auto;
    background-position: center;
  }

  .our-partners-content .partner {
    width: calc(100% - 0px);
    margin: 20px 0px;
  }
}

@media screen and (min-width: 769px) {
  #menu {
    width: auto !important;
    display: flex !important;
  }

  .toggler {
    display: none !important;
  }
}