@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
  font-family: "Poppins";
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  font-family: "Poppins";
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jersey";
  src: url(../fonts/Jersey.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #000;
  font-family: "Poppins";

}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  margin: 0 0 10px;
}

h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

h2 {
  font-size: 60px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h3 {
  font-size: 50px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
}

h4 {
  font-size: 45px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h5 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h6 {
  font-size: 25px;
  font-family: "Poppins";
  color: #b41b3d;
  font-weight: 400;
}

p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  font-family: "Poppins";
}

.pink {
  color: #b41b3d;
}

.purple {
  color: #02054c;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.f55 {
  font-size: 55px !important;
}

.f70 {
  font-size: 70px !important;
}

.f21 {
  font-size: 21px !important;
}

.f28 {
  font-size: 28px !important;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #000;
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 14px;
  padding: 10px 5px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #000000;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #000 !important;
}

/* Buttons Css Start*/
.theme-btn {
  background: #b41b3d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 3px 3px 3px 20px;
  font-size: 15px;
  position: relative;
  z-index: 1;
  transition: 0.5s ease-in-out;
  color: #ffff;
  gap: 13px;
  text-transform: uppercase;
}

.theme-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: 0.5s ease-in-out;
}

.theme-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: 0.5s ease-in-out;
}

.theme-btn:hover::before {
  transition: 0.5s ease-in-out;
}

.theme-btn:hover::after {
  transition: 0.5s ease-in-out;
}

.theme-btn:hover {
  transition: 0.5s ease-in-out;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 20px 0;
  display: block;
  width: 80%;
}

ul.hdr-top-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 30px;
  width: 80%;
}

ul.hdr-top-list li a {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 6px;
}

img.hdr-icon {
  width: 20px;
  height: 20px;
  object-fit: scale-down;
}

ul.hdr-top-list li a p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

.hdr-top-bar {
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.hdr-top-bar::before {
  position: absolute;
  top: 0;
  left: -10vw;
  width: 200vw;
  height: 100%;
  z-index: -1;
  content: '';
  background: #24336c;
}

.hdr_logo {
  position: relative;
  z-index: 999;
  background: transparent;
  height: 100%;
}

span.theme-btn-img {
  padding: 0 10px 0 15px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

span.theme-btn-img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #24336c;
  content: '';
  z-index: -1;
  clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

img.theme-arrow {
  width: 30px;
}

/* Header end*/

/* Banner */
.banner_sec {
  position: relative;
  z-index: 999;
  height: 700px;
  align-items: center;
  display: flex;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hdr_logo::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
  content: '';
  clip-path: polygon(0 0, 97% 0%, 100% 100%, 0% 100%);
}

.bottom-bar {
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.bottom-bar::before {
  position: absolute;
  top: 0;
  left: -10vw;
  width: 200vw;
  height: 100%;
  z-index: -1;
  content: '';
  background: #fff;
}

.hdr_logo::after {
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  position: absolute;
  top: 50px;
  right: 20px;
  box-shadow: 20px 0px 20px 20px #00000017;
  transform: rotate(-20deg);
}

h6.tagline {
  margin: 0;
  padding: 10px 20px;
  background: #b41b3d;
  font-size: 30px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

.banner_text h6 {
  color: #ffff;
}

/* Banner end*/

/* section start */

.info-sec {
  background-image: url(../images/info-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.info-card-text h6 {
  font-weight: 500;
  text-align: center;
  font-family: 'Oswald';
}

img.info-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.info-card-image {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.info-card {
  padding: 10px 9px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
}

.info-card::before {
  position: absolute;
  background: #fff;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: 0.3s ease-in-out;
}

.info-card::after {
  position: absolute;
  background: #b41b3d;
  content: '';
  top: 0%;
  left: 0%;
  width: 100%;
  height: 0%;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.info-card:hover::after {
  width: 100%;
  height: 110%;
  transition: 0.3s ease-in-out;
}

.info-card:hover img.info-img {
  filter: brightness(0) invert(1);
}

.info-card:hover .info-card-text * {
  color: #fff;
  transition: 0.3s ease-in-out;
}

.info-card:hover {
  transform: scale(1.05);
  transition: 0.3s ease-in-out;
}

/* section end */

/* section start */

.about-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-call p {
  margin: 0 !important;
}

.about-call a {
  font-size: 23px;
  color: #ea1e01;
  font-weight: 600;
}

.about_text p {
  margin: 0 0 30px 0;
}

.uppercase {
  text-transform: uppercase;
}

.about_text h4 {
  margin: 0 0 20px 0;
}

img.about-img {
  height: 550px;
}

/* section end */

/* section start */

.service-sec {
  background-image: url(../images/service-bg.jpg);
  background-size: cover;
  background-position: center;
}

img.service-img {
  height: 250px;
  margin: 0 0 20px;
}

.service-card {
  padding: 15px;
  background: #fff;
  margin: 30px 0;
}

/* section end */

/* section start */

.truck-left h4 {
  font-size: 43px;
}

.truck-left p {
  opacity: 0.7;
}

img.truck-left-img {
  height: 530px;
  box-shadow: 0 0 20px 0 #0000007a;
}

.trcuk-image-left {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.trcuk-image-left::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 80%;
  z-index: -1;
  content: '';
  background: #1b274f;
}

img.tick {
  object-fit: scale-down;
  width: 25px;
}

ul.list.count2 {
  column-count: 2;
}

ul.list li h6 {
  font-family: 'Oswald';
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.truck-right p {
  opacity: 0.7;
  font-size: 14px;
}

img.truck-right-img {
  height: 350px;
  box-shadow: 0 0 20px 0 #0000007a;
}

.trcuk-image-right {
  position: relative;
  z-index: 1;
  padding: 30px;
  margin: 0 0 20px 0px;
}

.trcuk-image-right::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  content: '';
  background: #1b274f;
}

.truck-right h4 {
  font-size: 40px;
}

ul.list p {
  font-size: 11px;
}

img.track-img {
  position: absolute;
  right: 0;
  width: 50%;
  top: 0;
  height: 80%;
  object-position: left;
}

section.track-sec {
  position: relative;
}



/* section end */

/* section start */



/* Track Your Order Section Start */
.track-left {
  background: #ffffff;
  padding: 10px 10px;
}

.track-title {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.track-form .section-title {
  font-weight: 700;

}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #b41b3d;
  font-size: 16px;
  pointer-events: none;
}

.track-input {
  width: 100%;
  height: 55px;
  padding: 0 8px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
}

.track-input::placeholder {
  color: #999;
}

.track-input:focus {
  border-color: #b41b3d;
  box-shadow: none;
  outline: none;
}

select.track-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23b41b3d' d='M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.checkbox-group .form-check-inline {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #b41b3d;
  border-color: #b41b3d;
}

.form-check-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  margin-bottom: 0;
}

.track-btn {
  background: #b41b3d;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 15px 60px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 250px;
  margin-top: 10px;
  width: 100%;
}

.track-btn:hover {
  background: #24336c;
  color: #fff;
}

.mt-25 {
  margin-top: 0;
}

/* Track Your Order Section End */

/* section end */

/* section start */

.testi-sec {
  background-image: url(../images/testi-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* section end */


/* Testimonial Box Section Start */
.testi-box {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #101a3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0;
  transition: all 0.3s ease;
}

.testi-quote {
  margin-bottom: 30px;
}

.testi-quote img {
  width: 45px;
  height: auto;
}

.testi-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  color: #444444;
  margin-bottom: 25px;
  font-weight: 400;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testi-user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #b41b3d;
  overflow: hidden;
  padding: 0;
}

.testi-user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testi-user-info h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: #b41b3d;
  margin: 0;
  text-transform: capitalize;
  font-weight: 500;
}

.testi-user-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #101a3d;
  margin: 0;
  font-weight: 500;
}

.testi-slider {
  width: 100vw;
}

.testi-slider .slick-slide {
  margin: 0 10px;
  opacity: 1 !important;
}

/* Testimonial Box Section End */

.career-card-img img {
  height: 350px;
}


/* Career Card Section Start */
.career-card-content {
  background: #ffffff;
  padding: 30px;
  box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
  margin-top: 0;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}

.career-top-wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.career-icon-box {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}

.career-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.career-header-right {
  flex-grow: 1;
}

.location-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.location-text {
  font-family: 'Poppins', sans-serif;
  color: #888888;
  font-size: 15px;
  font-weight: 500;
}

.bookmark-icon-wrap {
  width: 40px;
  height: 40px;
  background: #f5f8f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4db3ce;
  font-size: 16px;
  margin-top: -5px;
}

.career-job-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #000;
  margin: 2px 0;
  text-transform: capitalize;
}

.posted-date {
  font-family: 'Poppins', sans-serif;
  color: #888888;
  font-size: 14px;
  display: block;
}

.career-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #888888;
  line-height: 1.6;
  margin-bottom: 25px;
  margin-top: 15px;
}

.career-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apply-btn-link {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #b41b3d;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.apply-btn-link:hover {
  color: #24336c;
}

.applicant-avatars {
  display: flex;
  align-items: center;
}

.applicant-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -19px;
  object-fit: cover;
}

.applicant-avatars img:first-child {
  margin-left: 0;
}

.applicant-avatars .more-count {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #b41b3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-left: -22px;
  border: 2px solid #fff;
  font-family: 'Poppins', sans-serif;
}

.career-card {
  margin: 30px 0;
}

/* Career Card Section End */


/* Footer Style Section Start */
.footerSec {
  background: url('../images/footer-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 100px 0 0;
  color: #fff;
  position: relative;
  z-index: 1;
}
.footer-logo img {
  max-width: 280px;
}

.footer-about p {
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 12px;
  text-transform: capitalize;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  display: block;
  text-transform: capitalize;
}

.footer-services-wrap .footer-links li a {
  text-transform: uppercase;
}

.footer-links li a:hover {
  color: #b41b3d;
  padding-left: 8px;
}

.footer-newsletter-wrap p {
  font-size: 14px;
  color: #d1d1d1;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  height: 45px;
  position: relative;
}

.newsletter-form input {
  border: none;
  padding: 0 10px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  background: #f4f4f4;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
}

.newsletter-form button {
  background: #b41b3d;
  border: none;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.newsletter-form button:hover {
  background: #24336c;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  background: #b41b3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social-links a:hover {
  background: #fff;
  color: #b41b3d;
  transform: translateY(-3px);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-info-list li i {
  color: #b41b3d;
  font-size: 20px;
  margin-top: 4px;
}

.contact-info-list li p {
  margin: 0;
  color: #d1d1d1;
  font-size: 15px;
  line-height: 1.5;
}

.border-top-line {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-bottom p {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.contact-info-list li p a {
    color: #ffff;
}

/* Footer Style Section End */

/* Home Page end*/