/* OSLO */

/* font-family: "Poppins", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');






html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: #444444;
  display: inline-block;
  text-decoration: none;
  transition: all 0.25s;
}

a:hover {
  color: #123e7a;
}

span {
  display: inline-block;
}

img {
  max-width: 100%;
  transition: all 0.25s;
}

figure {
  margin-bottom: 0px;
}



p,
li {
  font-size: 16px;
  color: #444444;
}

p a,
li a {
  color: #123e7a;
}

p a:hover,
li a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
}

.btn-primary {
  background: #123e7a;
  border-color: #123e7a;
  padding: 10px 25px;
  border-radius: 50px;
}

.btn-primary:hover {
  background: #ed1c26;
  border-color: #ed1c26;
}


.section-heading>span {
  font-size: 30px;
  font-weight: 500;
  color: #123e7a;
}

.common-padding {
  padding: 80px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.heading-type-1 {
  font-size: 70px;
  font-weight: 500;
}

.heading-type-2 {
  font-size: 60px;
  font-weight: 600;
}

.heading-type-3 {
  font-size: 30px;
  font-weight: 600;
}

.sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #406395;
}

.bg-primary {
  background-color: #406395 !important;
}

.bg-grey {
  background-color: #f5f5f5 !important;
}

.btn-type-1 {
  color: #ed1c26 !important;
}

.btn-type-1 img {
  margin-left: 5px;
}

.btn-type-1:hover img {
  transform: translateX(5px);
}



@-webkit-keyframes navbarFixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes navbarFixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}






/* ===== Header ===== */
.header-top {
  background-color: #123e7a;
  padding: 3px 0;
  text-align: center;
}

.header-top p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 400;
}

.header {
  padding: 10px 0;
}

.header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav>ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.header-nav>ul>li {
  list-style: none;
  margin-right: 50px;
}

.header-nav>ul>li:last-child {
  margin-right: 0;
}

.header-nav>ul>li a {
  color: #444444;
  font-size: 18px;
  font-weight: 500;
}

.header-nav>ul>li a:hover,
.header-nav>ul>li a.active {
  color: #123e7a;
  text-decoration: underline;
}

.header-rgt .btn-primary {
  font-size: 18px;
}

.header-rgt a {
  margin-left: 20px;
}

.header-logo {
  margin-right: 20px;
}

.navbar-fostrap {
  display: none;
}

header {
  z-index: 111;
}

header.sticky {
  position: sticky;
  top: 0;
  background: #fff;
  width: 100%;
  animation: navbarFixed .3s alternate linear;
  box-shadow: 0 0 20px 2px rgba(0 0 0 / 0.2);
}

body.menu-active {
  overflow: hidden;
}

/* sub-menu */
li.menu-item-has-children {
  position: relative;
}

.sub-menu {
  position: absolute;
  min-width: 200px;
  padding-left: 0;
  box-shadow: 0 0 10px #e0e0e0;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
  transform: scaleY(0);
  transform-origin: 0 0;
  z-index: 111;
}

.sub-menu li a {
  background: #fff;
  padding: 10px 20px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.sub-menu>li:last-child>a {
  border-bottom: 0;
}

.sub-menu li {
  display: block;
  width: 100%;
}

li.menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

span.caret:before {
  margin-left: 8px;
  vertical-align: 3px;
  content: "";
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
  display: inline-block;
}


/* sub-sub-menu */
.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.sub-menu li.menu-item-has-children>a+span.caret {
  margin-left: auto;
  display: block;
  position: absolute;
  top: 10px;
  right: 15px;
}




@media(max-width:1399px) {
  .header-nav ul li {
    margin-right: 30px;
  }
}

@media(max-width:1199px) {
  .navbar-fostrap span {
    width: 25px;
    height: 4px;
    border-radius: 5px;
    background: #452118;
    display: block;
    margin: 4px 0;
    transition: .3s;
    transition-delay: .4s
  }

  .navbar-fostrap {
    display: block;
    position: relative;
    z-index: 111;
  }

  .navbar-fostrap.open span:nth-child(2) {
    opacity: 0;
  }

  .navbar-fostrap.open span:nth-child(1) {
    transform: rotate(45deg);
    margin-top: 12px;
  }

  .navbar-fostrap.open span:nth-child(3) {
    transform: rotate(-45deg);
    margin-top: -16px;
  }

  .header-rgt {
    margin-left: auto;
    margin-right: 20px;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    overflow: auto;
    /*background: #ccc;*/
    transition: .5s;
    z-index: 111;
  }

  .header-nav>ul {
    display: block;
    text-align: center;
    padding: 60px 0;
  }

  .header-nav>ul>li {
    margin: 20px 0;
  }

  .header-nav.visible {
    right: 0
  }


  /* animation */
  .header-nav:before,
  .header-nav:after {
    content: "";
    position: fixed;
    top: 0px;
    right: 0px;
    width: 0;
    height: 0;
    background-color: rgba(20, 21, 26, 0.6);
    border-bottom-left-radius: 200%;
    z-index: -1;
    transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  }

  .header-nav:after {
    background-color: #f5f5f5;
    box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
  }

  .header-nav.visible:before,
  .header-nav.visible:after {
    width: 100%;
    height: 100vh;
    border-radius: 0px;
  }

  .header-nav.visible:after {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
  }

  .header-nav>ul>li {
    position: relative;
    display: block;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
    overflow: hidden;
    -webkit-transform: translate(30px, 0%);
    transform: translate(30px, 0%);
    transition: .2s
  }

  .header-nav.visible>ul>li {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .header-nav.visible>ul>li:nth-child(1) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }

  .header-nav.visible>ul>li:nth-child(2) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }

  .header-nav.visible>ul>li:nth-child(3) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }

  .header-nav.visible>ul>li:nth-child(4) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }

  .header-nav.visible>ul>li:nth-child(5) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }

  .header-nav.visible>ul>li:nth-child(6) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
  }

  .header-nav.visible>ul>li:nth-child(7) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }

  .header-nav.visible>ul>li:nth-child(8) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
  }

  .header-nav.visible>ul>li:nth-child(9) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
  }

  /* sub-menu */
  .sub-menu {
    position: static;
    display: none;
    transition: unset !important;
    transform: unset;
    opacity: 1;
    visibility: visible;
  }

}

@media(max-width: 767px) {
  .header-nav>ul>li {
    margin: 15px 0;
  }
}

/* ===== Header ===== */


/* ===== Banner ===== */
.st-1-slider .owl-item {
  opacity: 0.7;
  transition: all ease-in-out 1s;
}

.st-1-slider .owl-item.active {
  opacity: 1;
  transition: all ease-in-out 1s;
}

.st-1-slider {
  position: relative;
}

.st-1-slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0 0 0 / 0.6);
  z-index: 11;
}

.st-1 {
  position: relative;
}

.st-1-cnt {
  position: absolute;
  top: 0;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  z-index: 11;
  color: #fff;
  width: 100%;
  /* width: calc(100% - 100px); */
  height: 100%;
  display: flex;
  align-items: center;
}



.st-1-cnt-items {
  max-width: 1000px;
  margin: auto;
}

.st-1-cnt-itm {
  text-align: center;
}

.st-1-cnt-title {
  font-size: 80px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.st-1-cnt-itm-description {
  background-color: rgba(0 0 0 / 0.5);
  padding: 25px;
  margin: 20px 0;
}

.st-1-cnt-itm-description p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.st-1-cnt-itm-description p:last-child {
  margin-bottom: 0;
}

/* ===== Banner ===== */

/* ===== About Us ===== */
.st-2-itm-cnt-description p {
  line-height: 1.8;
}

.st-2-itm-cnt-description p:last-child {
  margin-bottom: 0;
}

.st-2-itm-cnt-description {
  /* margin: 20px 0; */
  margin-top: 20px;
}

.description-text-white p {
  color: #fff;
}

.st-2-itm-cnt-cta {
  margin-top: 20px;
}

.st-2-itm-cnt-list {
  padding-left: 20px;
}

.st-2-itm-cnt-list:last-of-type {
  margin-bottom: 0;
}

.st-2-items .row {
  /* align-items: center; */
  gap: 20px 0;
}

/* ===== About Us ===== */

/* ===== Products We Offer ===== */
.st-3-itm {
  padding-bottom: 20px;
  position: relative;
}

.st-3-items .row {
  gap: 20px 0;
}

.st-3-itm-cnt {
  position: absolute;
  bottom: 0;
  background: #ffffff;
  width: calc(100% - 30px);
  padding: 20px;
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
  /* height: 70px; */
  height: 95px;
  overflow: hidden;
  transition: all .5s;
}

.st-3-itm:hover .st-3-itm-cnt {
  height: calc(100% - 30px);
  transition: all .5s;
  color: #fff;
}

.st-3-itm-cnt .sub-heading {
  margin-bottom: 0;
}

.st-3-itm-cnt-description {
  margin: 10px 0;
}

.st-3-itm-cnt-description p:last-child {
  margin-bottom: 0;
}

.st-3-itm-cnt-in {
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.st-3-itm:hover .st-3-itm-cnt-in {
  opacity: 1;
  visibility: visible;
  transition: all .5s;
}

.st-3-itm-img img {
  width: 100%;
}

/* ===== Products We Offer ===== */

/* ===== Catalogues ===== */
.st-4-itm-cnt {
  text-align: center;
  padding-top: 20px;
}

.st-4-items .row {
  gap: 25px 0;
}

.st-4-itm-img img {
  width: 100%;
}

/* ===== Catalogues ===== */

/* ===== Blogs ===== */
.st-5-itm-cnt-title {
  font-size: 18px;
  font-weight: 600;
  color: #123e7a;
}

.st-5-itm-img img {
  width: 100%;
}

.st-5-items .row {
  gap: 25px 0;
}

.st-5-itm-cnt-description p {}

.st-5-itm-cnt-description p:last-child {
  margin-bottom: 0;
}

.st-5-itm-cnt-description {
  margin: 10px 0;
}

.st-5-itm-cnt {
  padding: 20px 0 0;
}

.st-5-itm-img {
  overflow: hidden;
}
.st-5-itm:hover .st-5-itm-img img {
  transform: scale(1.15);
}
/* ===== Blogs ===== */

/* ===== Get in Touch ===== */
.form-control {
  background: #f5f5f5;
  border-radius: 0;
  border-color: #ddd;
  font-size: 16px;
  padding: 10px 20px;
}

.form-group input.btn.btn-primary {
  border-radius: 0;
}

.st-6-items form .row {
  gap: 20px 0;
}

/* ===== Get in Touch ===== */

/* ===== Footer ===== */
.footer-items .row {
  gap: 20px 0;
}

.social-media ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-media ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #123e7a;
  border-radius: 50%;
}

.social-media ul li a:hover {
  background-color: #ed1c26;
}

.footer-logo {
  display: block;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.footer-description {
  margin: 20px 0;
}

.footer-description p {
  color: #fff;
}

.footer-description p:last-child {
  margin-bottom: 0;
}




.footer-itm-quick-links {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.footer-itm-quick-links li a {
  color: #fff;
}

.footer-itm-quick-links li a:hover {
  color: #ed1c26;
}

.footer-itm-quick-links li {
  padding: 3px 0;
}

.footer-itm-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
}

.footer-contact-details {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.footer-contact-details li a,
.footer-contact-details li span {
  display: flex;
  align-items: start;
  gap: 8px;
}

.footer-contact-details li img {
  padding-top: 5px;
}

.footer-contact-details li a,
.footer-contact-details li span p {
  color: #fff;
}

.footer-contact-details li span p {
  margin-bottom: 0;
}

.footer-contact-details li a:hover {
  color: #ed1c26;
}

.footer-contact-details li {
  padding: 5px 0;
}

.copyright-items p {
  text-align: center;
  color: #fff;
}

.copyright-items p:last-child {
  margin-bottom: 0;
}

.copyright {
  background: #123e7a;
  padding: 15px 0;
}

/* ===== Footer ===== */

/* ===== Page Title ===== */
.st-7 {
  background: url(../img/banner-img-1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.st-7::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0 0 0 / 60%);
}

.st-7-items {
  position: relative;
}

.st-7-itm-title {
  font-size: 60px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.st-7-breadcrumbs nav .breadcrumb {
  justify-content: center;
  margin: 0;
}

.st-7-breadcrumbs nav .breadcrumb .breadcrumb-item a,
.st-7-breadcrumbs nav .breadcrumb .breadcrumb-item {
  font-size: 18px;
  font-weight: 500;
}

.st-7-breadcrumbs nav .breadcrumb .breadcrumb-item a {
  color: #fff;
}

.st-7-breadcrumbs nav .breadcrumb .breadcrumb-item a:hover {
  color: #ed1c26;
}

.st-7-breadcrumbs nav .breadcrumb .breadcrumb-item.active {
  color: #fff;
}

.st-7-breadcrumbs nav .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/* ===== Page Title ===== */

.st-8 {}

/* ===== Gallery ===== */
.owl-style-1 .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.owl-style-1 .owl-nav button {
  color: transparent !important;
  width: 40px;
  height: 40px;
}

.owl-style-1 .owl-nav button.owl-prev,
.owl-style-1 .owl-nav button.owl-next {
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.owl-style-1 .owl-nav button.owl-prev {
  background-image: url(../img/left-nav.png);
  left: -50px;
}

.owl-style-1 .owl-nav button.owl-next {
  background-image: url(../img/right-nav.png);
  right: -50px;
}

@media(min-width: 768px) {
  .owl-style-1 {
    padding: 0 40px;
  }
}

/* ===== Gallery ===== */

/* ===== Team ===== */
.st-9-itm {
  padding-bottom: 25px;
  position: relative;
}

.st-9-itm-cnt {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  /* box-shadow: 0 0 20px 2px rgba(0 0 0 / 0.2); */
  width: calc(100% - 40px);
  text-align: center;
}

.st-9-itm-cnt p {
  margin-bottom: 0;
  line-height: 1.2;
}

.st-9-itm-cnt .sub-heading {
  margin-bottom: 3px;
}

.st-9-itm-cnt-title {
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 1;
}

/* ===== Team ===== */

/* =====  ===== */
.owl-style-2 .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.owl-style-2 .owl-nav button {
  color: transparent !important;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: rgba(0 0 0 / 60%) !important;
}

.owl-style-2 .owl-nav button.owl-prev {
  background-image: url(../img/left-nav-white.png);
}

.owl-style-2 .owl-nav button.owl-next {
  background-image: url(../img/right-nav-white.png);
}

.owl-style-2 .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.owl-style-2 .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  background-color: #ed1c26;
  border-radius: 50%;
  position: relative;
  border: 3px solid transparent;
}

.owl-style-2 .owl-dots button.owl-dot.active {
  border-color: #123e7a;
}

/* =====  ===== */

/* =====  ===== */
.st-10 {}

.st-10-items .row {
  gap: 25px 0;
}

/* =====  ===== */

/* ===== Applications ===== */
.st-11 {}

.st-11-itm-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  background: #123e7a;
  padding: 20px;
  border-radius: 10px;
}

.st-11-itm-cnt {
  text-align: center;
}

.st-11-itm {
  background: #fff;
  padding: 40px 20px;
  box-shadow: 0 0 10px 2px rgba(0 0 0 / 0.2);
}

.st-11-itm-cnt .sub-heading {
  margin: 0;
}

.st-11-slide {
  padding: 15px 12px;
}

/* ===== Applications ===== */

/* ===== Contact ===== */
.st-12-items>.row {
  gap: 25px 0;
}

.st-12-itm-contact-details {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 20px;
}

.st-12-itm-contact-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #123e7a;
  padding: 12px;
}

.st-12-itm-contact-detail p {
  margin-bottom: 2px;
}

.st-12-itm-contact-detail p:last-of-type {
  margin-bottom: 0;
}

.st-12-itm-contact .st-12-itm-contact-details:last-child {
  margin-bottom: 0;
}

.st-12-itm-contact-detail-title {
  font-size: 20px;
  font-weight: 600;
}

.st-12-itm-form form .row {
  gap: 15px 0;
}

.st-13-itm-map iframe {
  display: block;
  border-top: 4px solid #123e7a;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.form-group p {
  margin: 0;
}

/* ===== Contact ===== */

/* ===== Vision Mission Promise ===== */
.st-13-itm {
  text-align: center;
}

.st-13-itm-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  background: #123e7a;
  padding: 20px;
  border-radius: 10px;
}

.st-13-itm {
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0 0 0 / 25%);
  border: 1px solid #ddd;
  padding: 40px 30px;
}

.st-13-itm-cnt-description p:last-child {
  margin-bottom: 0;
}

.st-13-items .row {
  gap: 20px 0;
}
/* ===== Vision Mission Promise ===== */

/* Blog Detail page */
.st-14-items p {
    margin-bottom: 10px;
}
.st-14-items h1 {
    font-size: 42px;
    font-weight: 600;
}
.st-14-items h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 20px 0 10px;
}
.st-14-items h3 {
    font-size: 30px;
    font-weight: 500;
    margin: 20px 0 10px;
}

.st-14-items h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 20px 0 10px;
}

.st-14-itm-img {
  margin-bottom: 20px;
}
.st-14-items h1 b, .st-14-items h2 b, .st-14-items h3 b, .st-14-items h4 b, .st-14-items h5 b, .st-14-items h6 b {
  font-weight: inherit;
}
.st-14-items p img {
  margin: 10px 0;
}
.st-14-items ul {
  padding-left: 20px;
}
/* Blog Detail page */




.easy-wp-page-nav {
    padding: 0;
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.easy-wp-page-nav .page-numbers {
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none !important;
    font-size: 18px;
}
.easy-wp-page-nav .page-numbers.current, .easy-wp-page-nav .page-numbers:hover {
    background: #123e7a;
    border-color: #123e7a;
}

.easy-wp-page-nav .page-numbers.next, .easy-wp-page-nav .page-numbers.prev {
  position: relative;
  color: transparent;
}
.easy-wp-page-nav .page-numbers.next::before, .easy-wp-page-nav .page-numbers.prev::before {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'FontAwesome';
    color: #444444;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.easy-wp-page-nav .page-numbers.next::before {
  content: "\f105";
}
.easy-wp-page-nav .page-numbers.prev::before {
  content: "\f104";
}
.easy-wp-page-nav .page-numbers.next:hover::before, .easy-wp-page-nav .page-numbers.prev:hover::before {
  color: #fff;
}
.easy-wp-page-nav li {
    margin: 0 !important;
}



.st-15 ul {
    padding-left: 20px;
}
.st-15 h2 {
    font-size: 28px;
}
.st-15 h3 {
    font-size: 24px;
}
.st-15 h4 {
    font-size: 20px;
}
.st-15 h5 {
    font-size: 18px;
}
.st-15 h6 {
    font-size: 16px;
}























































































































































/* ==================================================
                Responsive CSS Start
==================================================*/
@media(max-width: 1399px) {}


@media(max-width: 1199px) {
  .st-1-cnt-title {
    font-size: 70px;
  }

  .heading-type-1 {
    font-size: 60px;
  }

  .heading-type-2 {
    font-size: 50px;
  }

  .sub-heading {
    font-size: 20px;
  }
}


@media(max-width: 991px) {
  .st-1-cnt-title {
    font-size: 60px;
  }

  .st-1-cnt-itm-description p {
    line-height: 1.5;
  }

  .st-1-slide-itm img {
    height: 450px;
    object-position: center;
    object-fit: cover;
  }

  .section-heading>span {
    font-size: 24px;
  }

  .heading-type-1 {
    font-size: 48px;
  }

  .heading-type-2 {
    font-size: 42px;
  }

  .st-7-itm-title {
    font-size: 48px;
  }

  .st-7-breadcrumbs nav .breadcrumb .breadcrumb-item a,
  .st-7-breadcrumbs nav .breadcrumb .breadcrumb-item {
    font-size: 16px;
  }

/* Blog Detail page */
.st-14-items h1 {
    font-size: 36px;
}
.st-14-items h2 {
    font-size: 30px;
}
.st-14-items h3 {
    font-size: 24px;
}

.st-14-items h4 {
    font-size: 18px;
}
/* Blog Detail page */

}


@media(max-width: 767px) {

  p,
  li,
  a {
    font-size: 14px !important;
  }

  .st-1-cnt-title {
    font-size: 50px;
  }

  .section-heading>span {
    font-size: 20px;
  }

  .heading-type-1 {
    font-size: 42px;
  }

  .heading-type-2 {
    font-size: 36px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .footer-itm-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-itm-quick-links li {
    padding: 2px 0;
  }

  .btn-type-1 img {
    width: 18px;
  }

  .st-4-itm-cnt {
    padding-top: 10px;
  }

  .st-4-itm-cnt .sub-heading {
    margin-bottom: 3px;
  }

  .heading-type-3 {
    font-size: 24px;
  }

  .common-padding {
    padding: 60px 0;
  }

  .owl-style-1 .owl-nav {
    position: relative;
    transform: initial;
    margin-top: 15px;
    justify-content: center;
    gap: 50px;
  }

  .owl-style-1 .owl-nav button {
    width: 30px;
    height: 30px;
    background-size: 12px !important;
  }

  .owl-style-1 .owl-nav button.owl-prev,
  .owl-style-1 .owl-nav button.owl-next {
    left: initial;
    right: initial;
  }

  .owl-style-2 .owl-nav button {
    width: 30px;
    height: 30px;
    background-size: 8px !important;
  }

  .owl-style-2 .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
  }

  .st-12-itm-contact-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }




}


@media(max-width: 575px) {
  .header-top p {
    font-size: 12px !important;
  }

  .st-1-slide-itm img {
    height: 550px;
  }

  .st-1-cnt-title {
    font-size: 48px;
  }

  .st-1-cnt-itm-description {
    padding: 15px;
  }

  .st-1-cnt-itm-description p {
    font-size: 12px !important;
  }

  .btn-primary {
    padding: 8px 20px;
  }

  .header-rgt .btn-primary {
    font-size: 12px !important;
  }

  .section-heading>span {
    font-size: 18px;
  }

  .heading-type-1 {
    font-size: 36px;
  }

  .heading-type-2 {
    font-size: 30px;
  }

  .sub-heading {
    font-size: 18px;
  }

  .st-3-itm-cnt {
    /* height: 60px; */
    height: 80px;
  }

  .form-control {
    font-size: 14px;
    padding: 10px 15px;
  }

  .footer-itm-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-itm-quick-links li {
    padding: 1px 0;
  }

  .social-media ul li a {
    width: 35px;
    height: 35px;
    padding: 10px;
  }

  .copyright {
    padding: 10px 0;
  }

  .st-7-itm-title {
    font-size: 40px;
  }

  .st-9-itm-cnt-title {
    font-size: 16px;
  }

  .st-11-itm {
    padding: 20px 20px;
  }

  .st-12-itm-contact .st-12-itm-contact-details {
    gap: 10px;
    padding: 10px;
  }

  .st-12-itm-contact-detail-title {
    font-size: 16px;
  }

  /* Blog Detail page */
  .st-14-items h1 {
      font-size: 30px;
  }
  .st-14-items h2 {
      font-size: 24px;
  }
  .st-14-items h3 {
      font-size: 20px;
  }

  .st-14-items h4 {
      font-size: 16px;
  }
  /* Blog Detail page */

  .easy-wp-page-nav .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .easy-wp-page-nav .page-numbers.next::before, .easy-wp-page-nav .page-numbers.prev::before {
    font-size: 16px;
  }

.st-15 h3 {
    font-size: 20px;
}
.st-15 h4 {
    font-size: 18px;
}
.st-15 h5 {
    font-size: 16px;
}
.st-15 h6 {
    font-size: 14px;
}

}


@media(max-width: 350px) {
  .header-logo a {
    width: 100px;
  }
}