@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --clr-bg-header: #ffffff;
  --clr-btn: #e18b0a;
  --clr-dropdown: #e18b0a;
  --clr-nav-hover: #e18b0a;
  --clr-dropdown-hov: #e18b0a;
  --clr-dropdown-link-hov: #e18b0a;
  --clr-light: #FAFAFA;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* ----------------------------------------------- */
.bg-head {
  background-color: #e5681d;
  color: white;
}

.contact-link ul {
  margin-bottom: 0;
  padding: 10px 30px;
  display: flex;
}

.contact-link ul li {
  list-style: none;
  padding: 0px 15px;
}

.contact-link ul li a {
  color: #ffffff;
}

.social-media ul {
  margin-bottom: 0;
  padding: 10px 30px;
  display: flex;
  justify-content: end;
}

.social-media ul li {
  list-style: none;
  padding: 0px 10px;
}

.social-media ul li a {
  color: #ffffff;
}

.cart-add {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 0px 6px;
  font-size: 12px;
  margin-top: -25px;
  margin-left: -10px;
}

/* ----------------------------------------------- */

/* ----------------------------------------------- */

.input-box {
  position: relative;
  height: 42px;
  /* max-width: 900px; */
  width: 100%;
  background: #fff;
  margin: 0 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px 1px #00000030;
}

.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.input-box i {
  left: 10px;
  font-size: 15px;
  color: #707070;
}

.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  border: none;
  padding: 2px 42px 2px 8px;
  background-color: transparent;
}

.input-box .button {
  right: 1px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 16px 17px;
  border-radius: 22%;
  background-color: #f49140;
  cursor: pointer;
}

.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}

/* Responsive */
@media screen and (max-width: 500px) {
  .input-box {
    height: 66px;
    margin: 0 8px;
  }

  .input-box i {
    left: 12px;
    font-size: 25px;
  }

  .input-box input {
    padding: 0 112px 0 50px;
  }

  .input-box .button {
    right: 12px;
    font-size: 14px;
    padding: 8px 18px;
  }
}

/* ----------------------------------------------- */

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  position: sticky;
  top: 0px;
  background-color: var(--clr-bg-header);
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #f5f5f5;
}

section {
  /* position: relative;
  height: calc(100vh - 3rem);
  width: 100%; */
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 130, 95, 0.5);
}

.navbar-head {
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.logo-container {
  flex: 0;
  display: flex;
  align-items: center;
}

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 5;
}

.log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
}

.cart {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 .2rem;
  transition: .3s;
  text-transform: uppercase;
}

.btn.solid,
.btn.transparent:hover {
  background-color: var(--clr-light);
  color: var(--clr-btn);
  border: 1px solid #e5681d;
}

.btn.transparent,
.btn.solid:hover {
  background-color: #e5681d;
  color: var(--clr-light);
}

.nav-links>ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12px;
}

.nav-link {
  position: relative;
}

.nav-link>a {
  line-height: 3rem;
  color: black;
  padding: 0 .8rem;
  letter-spacing: 1px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .5s;
}

.nav-link>a>i {
  margin-left: .2rem;
}

/* .nav-link:hover>a {
  transform: scale(1.1);
} */

.dropdown {
  box-shadow: 1px 1px 4px 1px #e5e5e5;
  border-radius: 6px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 12rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}

.dropdown ul {
  position: relative;
  padding-left: 0px;
}

.dropdown-link>a {
  display: flex;
  background-color: var(--clr-light);
  color: black;
  padding: .5rem 1rem;
  font-size: .9rem;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.dropdown-link:hover>a {
  background-color: var(--clr-dropdown);
  color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid #e3e3e3;
}

.dropdown-link i {
  transform: rotate(-90deg);
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: #cfcfcf;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;
}

.dropdown-link:first-child:hover~.arrow {
  background-color: var(--clr-dropdown);
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: .8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover>.dropdown,
.dropdown-link:hover>.dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--clr-light);
  position: relative;
  z-index: 1001;
  transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: var(--clr-light);
  border-radius: 3px;
  transition: .5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked~.hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked~.hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked~.hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 3rem;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: .65s;
  }

  #check:checked~.nav-btn {
    transform: translateX(0);
  }

  #check:checked~.nav-btn .nav-link,
  #check:checked~.nav-btn .log-sign {
    animation: animation .5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
  }

  .nav-links>ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link>a {
    line-height: 1;
    padding: 1.6rem 2rem;
  }

  .nav-link:hover>a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover>.dropdown,
  .dropdown-link:hover>.dropdown {
    display: block;
  }

  .nav-link:hover>a>i,
  .dropdown-link:hover>a>i {
    transform: rotate(360deg);
  }

  .dropdown-link>a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link>a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link>a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: .5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover>a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover~.arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link>a>i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: .7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: .7s;
  }

  .log-sign {
    flex: initial;
    width: 100%;
    padding: 1.5rem 1.9rem;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(15px);
  }
}

/* ----------------------------------------------------- */


/* ----------------------------------------------------- */
.glob-lr {
  padding: 40px 60px;
}

/* ----------------------------------------------------- */


/* ----------------------------------------------------- */

.title {
  font-family: 'Poppins';
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 7px;
  text-transform: capitalize;
  border-bottom: 3px solid #078d96;
}

/* ----------------------------------------------------- */
.section-title {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.section-title-main {
  font-size: 22px;
}

.section-title-main {
  font-size: 22px;
}

.section-title b {
  background-color: currentColor;
  display: block;
  flex: 1;
  height: 2px;
  opacity: .1;
  margin: 0px 20px;
}

.view {
  font-size: 13px;
  color: black;
  text-decoration: none;
}

/* ----------------------------------------------------- */


/* ----------------------------------------------------- */
.banner-text {
  text-align: center;
  padding: 100px;
  color: #000000;
}

/* ----------------------------------------------------- */


/* ----------------------------------------------------- */
.img-wrapper {
  /* width: 250px;
  height:250px; */
  overflow: hidden;
  margin: auto;
}

.inner-img {
  transition: 0.3s;
}

.inner-img:hover {
  transform: scale(1.1);
}

.section-title-pearls {
  font-size: 45px;
  font-family: sans-serif;
  font-weight: 500;
}

.grid-size {
  margin: 0 auto;
  padding: 0px 6px 10px 5px;
  text-align: center;
  box-shadow: 1px 1px 12px 1px #e7e7e7;
  background-color: white;
  border-radius: 10px;
}

.grid-size h5 {
  font-size: 1rem;
  font-family: cursive;
}


.grid-size p {
  font-size: 13px;
}

/* ----------------------------------------------------- */


/*--------------------------------------------------------*/

/* Header */
.codrops-header {
  margin: 0 auto;
  padding: 4em 1em;
  text-align: center;
}

.codrops-header h1 {
  margin: 0;
  font-weight: 800;
  font-size: 4em;
  line-height: 1.3;
}

.codrops-header h1 span {
  display: block;
  padding: 0 0 0.6em 0.1em;
  color: #74777b;
  font-weight: 300;
  font-size: 45%;
}

/* Demo links */
.codrops-demos {
  clear: both;
  padding: 1em 0 0;
  text-align: center;
}

.content+.codrops-demos {
  padding-top: 5em;
}

.codrops-demos a {
  display: inline-block;
  margin: 0 5px;
  padding: 1em 1.5em;
  text-transform: uppercase;
  font-weight: bold;
}

.codrops-demos a:hover,
.codrops-demos a:focus,
.codrops-demos a.current-demo {
  background: #3c414a;
  color: #fff;
}

/* To Navigation Style */
.codrops-top {
  width: 100%;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.69em;
  line-height: 2.2;
}

.codrops-top a {
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
  letter-spacing: 1px;
}

.codrops-top span.right {
  float: right;
}

.codrops-top span.right a {
  display: block;
  float: left;
}

.codrops-icon:before {
  margin: 0 4px;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: 'codropsicons';
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
}

.codrops-icon-drop:before {
  content: "\e001";
}

.codrops-icon-prev:before {
  content: "\e004";
}

/* Related demos */
.related {
  clear: both;
  padding: 6em 1em;
  font-size: 120%;
}

.related>a {
  display: inline-block;
  margin: 20px 10px;
  padding: 25px;
  border: 1px solid #4f7f90;
  text-align: center;
}

.related a:hover {
  border-color: #39545e;
}

.related a img {
  max-width: 100%;
  opacity: 0.8;
}

.related a:hover img,
.related a:active img {
  opacity: 1;
}

.related a h3 {
  margin: 0;
  padding: 0.5em 0 0.3em;
  /* max-width: 300px; */
  text-align: left;
}

/* Demo ad design */
#cdawrap {
  background: none;
  top: 50px;
  border: none;
}

#cdawrap a {
  color: #fff !important;
}

#cda-remove {
  color: #fff;
}

@media screen and (max-width: 25em) {
  .codrops-header {
    font-size: 75%;
  }

  .codrops-icon span {
    display: none;
  }
}

.grid {
  position: relative;
  clear: both;
  margin: 0 auto;
  padding: 0px 6px 10px 5px;
  list-style: none;
  text-align: center;
  box-shadow: 1px 1px 12px 1px #e5e5e5;
  background-color: white;
}
a{
  color: #000000;
}
.grid h5 {
  font-size: 1rem;
  font-family: cursive;
}

.grid h6 {
  font-size: 1rem;
  font-weight: 600;
  font-family: sans-serif;
}

.grid p {
  font-size: 14px;
}

/* Common style */
.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  width: 100%;
  height: auto;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  width: 100%;
  position: relative;
  display: block;
  opacity: 0.8;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption>a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.grid figure h2 span {
  font-weight: 800;
}

.grid figure h2,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/* Individual effects */

/*--------------------------------------------------------*/

figure.effect-ming {
  background: #030c17;
}

figure.effect-ming img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.effect-ming figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale3d(1.4, 1.4, 1);
  transform: scale3d(1.4, 1.4, 1);
}

figure.effect-ming h5 {
  margin: 44% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
}

figure.effect-ming p {
  padding: 1em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

figure.effect-ming:hover h2 {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

figure.effect-ming:hover figcaption::before,
figure.effect-ming:hover p {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

figure.effect-ming:hover figcaption {
  background-color: rgba(58, 52, 42, 0);
}

figure.effect-ming:hover img {
  opacity: 0.4;
}

/*-------------------------------------------------*/

/*-------------------------------------------------*/
.product {
  box-shadow: 1px 1px 12px #cecece;
  border-radius: 6px;
  padding: 10px;
  height: 100%;
  overflow: hidden;
}

.pro-box {
  position: relative;
  margin-bottom: 40px;
}

.numb {
  position: absolute;
  top: 0;
  right: 12px;
}

.it-numb {
  background-color: #e5681d;
  color: white;
  font-size: 13px;
  padding: 4px 10px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.product img {
  text-align: center;
  margin: auto;
  width: 100%;
  height: 175px;
  margin-bottom: 10px;
}

.p-name {
  text-align: left;
  margin-bottom: 3px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
}

.p-price {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px !important;
  color: #000000;
}

/* .pr-buy {
  border: 1px solid #c2c2c2;
  background-color: #101d33;
  color: white;
  border-radius: 6px;
  font-size: 12px;
  padding: 6px 10px;
} */
.pr-buy {
  font-size: 13px;
  background: #1f3a66;
  color: #fff;
  border: 1px solid #1f3a66;
  padding: 4px 8px;
  border-radius: 6px;
  /* margin: 1rem; */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pr-buy:hover {
  color: #1f3a66;
}

.pr-buy::after {
  content: "";
  background: #ecf0f1;
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
}

.pr-buy::after {
  transition: all 0.35s;
}

.pr-buy:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}

button.pr-buy::after {
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
}

button.pr-buy:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}

/*-------------------------------------------------*/

/*-------------------------------------------------*/
.typ-pearl {
  display: flex;
  background-color: white;
  box-shadow: 1px 1px 12px 1px #d8d8d8;
  border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
  height: 100%;
  overflow: hidden;
}

.type-title {
  font-size: 20px;
  font-weight: 500;
}

.typ-pearl ul {
  padding-left: 0px;
}

.typ-pearl ul a {
  color: black;
}

.typ-pearl ul li {
  font-size: 15px;
  line-height: 25px;
}

.type-txt {
  padding:15px 30px;
}

.arw {
  color: #e57b50;
}


.color-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  }
  .color-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  margin: 0;
  }
  .color-list li {
  padding: 5px 0;
  }
  .color-list a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  }
  .color-list .arw {
  margin-right: 6px;
  }
/*-------------------------------------------------*/


/*-------------------------------------------------*/
.quick-title{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.bg-quik{
  background-color: #f3f3f3;
  padding:10px;
  border-radius: 8px;
}
.quick-lnk{
  font-size: 16px;
  font-weight:500;
  margin-bottom:6px;
}
.links-p a{
  color: #575757;
  font-size: 14px;
  padding: 0px 6px;
}
.links-p{
  color:#575757;
}
/*-------------------------------------------------*/

















/* ----------------------------------------------------- */
.footer-section {
  background-color: #101d33;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section:before {
  content: '';
  position: absolute;
  top: -146%;
  left: -18%;
  width: 44%;
  height: 257%;
  transform: rotate(54deg);
  background-color: #14233e;
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  z-index: -10;
}

.footer-section:after {
  position: absolute;
  content: '';
  background-color: #14233e;
  top: -24%;
  right: 4%;
  width: 26%;
  height: 264%;
  transform: rotate(44deg);
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  z-index: -10;
}

.footer-top {
  padding-top: 96px;
  padding-bottom: 50px;
}

.footer-top p,
.company-footer-contact-list li {
  color: #ffffff;
  margin-bottom: 12px;
}

.company-footer-contact-list {
  margin-top: 10px;
}

.company-footer-contact-list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.company-footer-contact-list li+li {
  margin-top: 5px;
}

.company-footer-contact-list li i {
  margin-right: 10px;
  font-size: 20px;
  display: inline-block;
}

.footer-top .site-logo {
  margin-bottom: 25px;
  display: block;
}

.widget-title {
  text-transform: capitalize;
}

.footer-top .widget-title {
  color: #ffffff;
  margin-bottom: 40px;
}

.courses-link-list li+li {
  margin-top: 10px;
}

.courses-link-list li a {
  color: #ffffff;
  text-transform: capitalize;
  font-family: var(--para-font);
  font-weight: 400;
}

.courses-link-list li a:hover {
  color: #e5681d;
}

.courses-link-list li i {
  margin-right: 5px;
}

.footer-top .small-post-title a {
  font-family: var(--para-font);
  color: #ffffff;
  font-weight: 400;
}

.small-post-item .post-date {
  color: #e5681d;
  margin-bottom: 3px;
  font-family: var(--para-font);
  font-weight: 400;
}

.small-post-list li+li {
  margin-top: 30px;
}

.news-letter-form {
  margin-top: 15px;
}

.news-letter-form input {
  width: 100%;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
}

.news-letter-form input[type="submit"] {
  width: auto;
  border: none;
  background-color: #e18b0a;
  padding: 9px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #ffffff;
  margin-top: 10px;
}

.footer-bottom {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
  color: #ffffff;
}

.copy-right-text a {
  color: #e5681d;
}

.terms-privacy li+li {
  margin-left: 30px;
}

.terms-privacy li a {
  color: #ffffff;
  position: relative;
}

.terms-privacy li a:after {
  position: absolute;
  content: '-';
  color: #ffffff;
  display: inline-block;
  top: 0;
  right: -18px;
}

.terms-privacy li+li a:after {
  display: none;
}

/* ----------------------------------------------------- */

/* --------------------------------------------------- */

.gallery {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery img {
  width: 12%;
  height: 80%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #fff;
  transition: all ease-out 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.gallery img:hover {
  width: 30%;
}

/* --------------------------------------------------- */

/* ------------------------------------- */
.fst-box {
  box-shadow: 1px 1px 12px 1px #e7e7e7;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}

.right-serve {
  border-right: 1px solid #cfcfcf;
}

.title-h6 {
  font-weight: 500;
  font-size: 15px;
}

.right-serve p {
  font-size: 14px;
}

.right-serve-non p {
  font-size: 14px;
}

.fst-serv {
  margin: auto;
}

/* .right-serve img{
    width: 55px;
    height: 45px;
} */
/* ------------------------------------- */
.company-footer-contact-list a{
  color:white;
}
/* --------------------------------------------------- */

/* --------------------------------------------------- */
.blog-title{
  font-size: 18px;
}
.blog {
    box-shadow: 1px 1px 12px 1px #ebebeb;
    padding: 20px;
    border-radius: 8px;
}
.mb-blog{
  margin-bottom:25px;
}
.abt-top-last h2{
  font-size: 19px;
}
.abt-top-last h3{
  font-size: 17px;
}
.abt-top-last ul li {
    list-style: disc;
}
/* --------------------------------------------------- */
.all a{
    color:#0c6bbf !important;
    }
/* --------------------------------------------------- */