/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  /*-webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  webkit-box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

div, h1, h2, h3, h4, h5, p, ol, form, input, textarea, img, html, applet, object, iframe, 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, 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%;
  vertical-align: baseline;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Manjari";
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  outline: none;
  display: block;
}

blockquote, q {
  quotes: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-weight: 400;
}
ul li {
  padding: 0;
  margin: 0;
}

h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 20px;
  color: #1944EB;
}
h2 span {
  color: #C00009;
}
h2 strong {
  color: #C00009;
  font-weight: 700;
}

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #29292B;
  font-family: "Manjari";
}

h1, h2 {
  font-family: "Manjari";
}

p {
  font-family: "Manjari";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #636363;
}

figure {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

a {
  font-family: "Manjari";
  color: #29292B;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #025BBA;
}

.a_btn {
  background-color: #1944EB;
  color: white;
  border: 1px solid #1944EB;
  display: inline-block;
  padding: 20px 38px;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  margin-top: 30px;
  transition: 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 48px;
}
.a_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  transform: translateX(-90%);
  transition: 0.8s;
  opacity: 0;
  visibility: hidden;
}
.a_btn:hover {
  border-color: #1944EB;
  background-color: white;
  color: #1944EB;
}
.a_btn:hover::after {
  transform: translateX(100%);
  visibility: visible;
  opacity: 1;
}

ul {
  color: #515151;
}

.main-header {
  background-color: #E8EDDE;
  padding-bottom: 10px;
}
.main-header .contact-info ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}
.main-header .contact-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-header .contact-info ul a {
  font-size: 40px;
  font-weight: 700;
  color: #636363;
}
.main-header .contact-info ul a:hover {
  color: #1944EB;
}
.main-header .contact-info ul span {
  width: 48px;
  height: 40px;
  display: inline-block;
  flex-shrink: 0;
}
.main-header .logo-img {
  display: block;
  padding: 10px 0;
  width: 100%;
}
.main-header .logo-img a {
  width: 400px;
  height: 270px;
  display: inline-block;
}
.main-header .logo-text {
  padding: 10px 0;
}
.main-header .logo-text a {
  font-size: 54px;
  font-weight: 700;
  color: #636363;
}
.main-header .logo-text a:hover {
  color: #1944EB;
}

.banner-main .fig-holder {
  width: 100%;
  height: 550px;
  position: relative;
}
.banner-main .fig-holder::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}
.banner-main .element {
  position: relative;
  text-align: center;
}
.banner-main .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 30px;
}
.banner-main h1 {
  color: white;
  font-size: 60px;
  font-weight: 400;
  font-family: "Manjari";
}
.banner-main h6 {
  color: white;
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
}
.banner-main ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  line-height: 13px;
}
.banner-main ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #E8EDDE;
  padding: 20px 30px;
}
.banner-main .icon-holder {
  background-color: #D2B48C;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
  border-radius: 100%;
  flex-shrink: 0;
}
.banner-main .icon-holder img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-main h4 {
  font-size: 18px;
  font-weight: 400;
  font-family: "Merriweather";
}

.welcome-norristown {
  margin: 60px 0 0 0;
}
.welcome-norristown .heading h2 {
  padding-bottom: 80px;
}
.welcome-norristown span {
  color: #A5A5A5;
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}
.welcome-norristown .main-wapper {
  background-color: #D2B48C;
  position: relative;
}
.welcome-norristown .main-wapper::after {
  content: "";
  display: block;
  clear: both;
}
.welcome-norristown .main-wapper:last-child .img-wapper {
  top: 0;
  background-color: #EDEDED;
  padding: 30px;
  padding-bottom: 60px;
}
.welcome-norristown .main-wapper:last-child .img-wapper h3 {
  color: #636363;
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.welcome-norristown .main-wapper:last-child .img-wapper .img-sub-wapper {
  float: right;
  display: flex;
  align-items: center;
}
.welcome-norristown .main-wapper:last-child .img-wapper .img-holder {
  width: 313px;
  height: 227px;
  display: inline-block;
  position: relative;
}
.welcome-norristown .main-wapper:last-child .img-wapper .img-holder img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.welcome-norristown .main-wapper:last-child .img-wapper::after {
  content: "";
  display: block;
  clear: both;
}
.welcome-norristown .img-wapper {
  width: 50%;
  float: left;
  top: -60px;
  position: relative;
}
.welcome-norristown .img-wapper img {
  width: 100%;
}
.welcome-norristown .text-main {
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
}
.welcome-norristown .text {
  width: 660px;
  padding-top: 60px;
  padding-left: 30px;
}
.welcome-norristown .text h2 {
  font-size: 30px;
  color: #636363;
}
.welcome-norristown .text h6 {
  font-family: "Merriweather";
  color: white;
  font-size: 18px;
  margin-top: 10px;
}
.welcome-norristown ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Merriweather";
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 54px;
}
.welcome-norristown ul li {
  flex: 0 0 50%;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}
.welcome-norristown ul li::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../img/icon-bullet.png);
  background-repeat: no-repeat;
  left: 0;
  top: 3px;
}
.welcome-norristown .contact-div {
  margin-top: 20px;
}
.welcome-norristown .contact-div .icon-holder {
  display: inline-block;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
  background-color: white;
  border-radius: 100%;
  flex-shrink: 0;
}
.welcome-norristown .contact-div .icon-holder img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.welcome-norristown .contact-div ul {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-wrap: nowrap;
}
.welcome-norristown .contact-div ul a {
  color: white;
  font-size: 18px;
  font-family: "Manjari";
}
.welcome-norristown .contact-div ul a:hover {
  color: #1944EB;
}
.welcome-norristown .contact-div ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}
.welcome-norristown .contact-div ul li::after {
  display: none;
}
.welcome-norristown .from-main {
  margin-top: 20px;
  position: relative;
}
.welcome-norristown .from-main input:not(.look-btn) {
  width: 100%;
  padding: 20px;
  outline: 0;
}
.welcome-norristown .from-main input::-moz-placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #A5A5A5;
}
.welcome-norristown .from-main input::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #A5A5A5;
}
.welcome-norristown .from-main label {
  color: white;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}
.welcome-norristown .from-main .col-md-12 {
  position: relative;
}
.welcome-norristown .from-main .col-md-12::after {
  content: "";
  display: block;
  clear: both;
}
.welcome-norristown .look-btn {
  padding: 20px 60px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Merriweather";
  color: #D2B48C;
  background-color: #636363;
  border: 1px solid #636363;
  outline: 0;
  margin-top: 30px;
  float: right;
  transition: 0.3s;
}
.welcome-norristown .look-btn:hover {
  background-color: transparent;
  color: #636363;
}

.main-footer {
  background-color: white;
  padding: 30px 0;
}
.main-footer .wapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-footer p {
  color: #A5A5A5;
}
.main-footer a {
  color: #636363;
}
.main-footer a:hover {
  color: #A5A5A5;
}/*# sourceMappingURL=style.css.map */