@import url(https://fonts.googleapis.com/css2?family=Red+Rose:wght@300;400;700&family=Roboto:wght@100;300;400;500;700;900&display=swap);
/* ================================ Basic CSS =============================== */
html{
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Red Rose", cursive;
  box-sizing: border-box;
}

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

:root{
  --primary-navy-blue: #202c45;
  --tertiary-red: #ff3a46;
  --tertiary-yellow: #fbd87f;
  --tertiary-grey: #666666;
  --tertiary-grey-2: #ddd;

}

.intro-vid-container {
  width: 100%;
  height: 100vh;
  background-color: #202c45d2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-video {
  text-align: center;
}
.intro-video h1 {
  font-size: 80px;
  color: var(--tertiary-yellow);
  margin-bottom: 50px;
}
.intro-video a {
  font-size: 20px;
  background-color: var(--tertiary-red);
  color: var(--tertiary-yellow);
  text-decoration: none;
  border: 2px solid var(--tertiary-red);
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
}
.intro-video a:hover {
  color: var(--tertiary-yellow);
  background: transparent;
}

.background-clip {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 650px) {
  .intro-video h1 {
    font-size: 37px;
    margin-bottom: 30px;
  }
  .intro-video a {
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 30px;
  }
}
@media (min-aspect-ratio: 16/9) {
  .background-clip {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .background-clip {
    height: 100%;
    width: auto;
  }
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0px;
}

a:hover {
  text-decoration: none;
  color: inherit;
}
.program-btn {
  border: 1px solid var(--tertiary-red);
  background-color: var(--tertiary-red);
  color: var(--tertiary-grey-2);
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
}
.program-btn:hover {
  background-color: var(--tertiary-grey-2);
  color: var(--tertiary-red);
}
.footer-icon a {
  color: inherit;
}

.footer-icon a:visited {
  color: var(--tertiary-grey-2);
}

.footer-icon i {
  background-color: var(--tertiary-red);
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.footer-icon i:hover {
  padding: 7px;
  transition: 0.7s;
}

.container {
  max-width: 1170px;
}

@keyframes swap {
  50% {
    transform: translate(-50%, calc(var(--y) - 250px)) scale(0.85) rotate(-5deg);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate(-50%, calc(var(--y) - 15px)) scale(0.85);
    z-index: -1;
  }
}
@media screen and (max-width: 575px) {
  .container {
    padding: 0px 15px;
    max-width: 100%;
    width: 100%;
  }
  
}
@media screen and (min-width: 575px) {
  .team-img {
    height: 250px;
  }
}

/* Read More btn */
.more-text,
.show-more2,
.show-more3 {
  display: none;
}
.see-more-btn{
  background: transparent;
  border: none;
  color: var(--tertiary-red);
}
.read-more-btn {
  background-color: var(--tertiary-red);
  color: var(--tertiary-yellow);
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 1s;
}
.read-more-btn:hover{
  color: var(--tertiary-red);
  background: var(--tertiary-yellow);

}
.text.show-more .more-text,
.t-2.more-text2 .show-more2,
.t-3.more-text3 .show-more3 {
  display: inline;
}

/* ================================ Header CSS =============================== */
header .sub-01 {
  background: var(--primary-navy-blue);
  position: relative !important;
}
header .my-nav {
  position: absolute;
  width: 100%;
  z-index: 999;
  padding: 10px 0px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
 
}
header .my-nav .nav-items {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  align-content: center;
  position: relative;
  justify-content: space-between;
}
header .my-nav .nav-items .menu-toggle {
  top: 1.375rem;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.5s;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767.98px) {
  header .my-nav .nav-items .menu-toggle {
    visibility: visible;
    opacity: 1;
  }
}
header .my-nav .nav-items .menu-toggle .menu-burger {
  width: 30px;
  height: 3px;
  background: #fff;
  transition: ease-in-out 0.5s;
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
  z-index: 99;
}
header .my-nav .nav-items .menu-toggle .menu-burger::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background: #fff;
  transition: ease-in-out 0.1s;
  transform: translatey(-10px);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
}
header .my-nav .nav-items .menu-toggle .menu-burger::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background: #fff;
  transition: ease-in-out 0.1s;
  transform: translatey(10px);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
}
header .my-nav .logo {
  width: 6%;
  height: 5%;
  display: flex;


}


.logo-p{
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  color: var(--tertiary-grey-2);
 margin-left: 10px;
}
.head-footer .logo{
  width: 30%;
  height: 5%;
  display: flex;
}
.head-footer .logo-p{
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  color: var(--tertiary-grey-2);

}
@media screen and (max-width: 580px) {

  header .my-nav .logo {
    width: 20%;
    height: 5%;
    display: flex;
  
  }
  }
header .my-nav .menu-items {
  flex: 1 1 70%;
  max-width: 70%;
  width: 70%;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  header .my-nav .menu-items {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
}
header .my-nav .menu-items .menu {
  display: block;
  position: relative;
  text-align: right;
  width: 100%;
  transition: ease-in-out 0.5s;
}
@media screen and (max-width: 767.98px) {
  header .my-nav .menu-items .menu {
    text-align: left;
    display: none;
  }
}
header .my-nav .menu-items .menu ul li {
  display: inline-block;
  padding: 0px 10px;
}
@media screen and (max-width: 767.98px) {
  header .my-nav .menu-items .menu ul li {
    display: block;
    padding: 10px 0px;
  }
}
header .my-nav .menu-items .menu ul li a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 0px 20px;
}
header .my-nav .menu-items .menu ul li a:hover {
  color: var(--tertiary-red);
  font-size: 17px;
  transition: 100ms;
}
@media screen and (max-width: 767.98px) {
  header .my-nav .menu-items .menu ul li a {
    padding: 10px 0px;
  }
}

.og-hf {
  background: var(--primary-navy-blue);
  position: fixed;
  height: 70px;
  z-index: 999;
  width: 100%;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.og-hf .my-nav {
  background: var(--primary-navy-blue);
}

.menu-burger.active {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

.menu-burger.active::before {
  transform: rotate(45deg) !important;
}

.menu-burger.active::after {
  transform: rotate(135deg) !important;
}

.menu.active {
  display: block !important;
  transition: ease-in-out 0.1s;
}

/* ================================ Slider CSS =============================== */
.banner {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
@media screen and (max-width: 575.98px) {
  .banner .carousel {
    height: 300px;
  }
}
@media screen and (max-width: 575.98px) {
  .banner .carousel .w-100 {
    height: 300px;
  }
}
.banner .carousel-control-prev .carousel-control-prev-icon {
  position: relative;
}
.banner .carousel-control-prev .carousel-control-prev-icon::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: -10px;
  top: -10px;
  background: var(--tertiary-red);
  z-index: -1;
}
.banner .carousel-control-next .carousel-control-next-icon {
  position: relative;
}
.banner .carousel-control-next .carousel-control-next-icon::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: -10px;
  top: -10px;
  background: var(--tertiary-red);
  z-index: -1;
}
.banner .carousel-inner .carousel-item::after {
  position: absolute;
  content: "";
  background: url(../images/slider/line-shape.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.banner .carousel-inner .carousel-item::before {
  position: absolute;
  content: "";
  background: var(--primary-navy-blue);
  opacity: 0.9;
  height: 100%;
  width: 100%;
}
.banner .carousel-inner .carousel-item .carousel-caption {
  top: 35%;
  display: block;
  transition: ease-in 0.5s;
}
@media screen and (max-width: 991.98px) {
  .banner .carousel-inner .carousel-item .carousel-caption {
    display: none;
  }
}
@media (max-width: 1199.98px) and (min-width: 992px) {
  .banner .carousel-inner .carousel-item .carousel-caption {
    top: 20%;
  }
}
.banner .carousel-inner .carousel-item .carousel-caption h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: 1px;
  color: var(--tertiary-yellow);
  margin: 0 0 1rem 0;
  display: inline-block;
}
.banner .carousel-inner .carousel-item .carousel-caption p {
  font-size: 20px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin: 10px 0px;
  color: #fff;
  display: block;
  font-weight: 100;
  line-height: 35px;
}
.banner .carousel-inner .carousel-item .carousel-caption ul li {
  display: inline-block;
  margin: 30px 0px;
  font-size: 16px;
  transition: 0.5s;
}
.banner .carousel-inner .carousel-item .carousel-caption ul li a {
  padding: 6px 16px;
  background-color: var(--tertiary-red);
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

/* ================================ Section CSS =============================== */
.bg-01 {
  padding: 3.125rem 0rem;
  position: relative;
  overflow: hidden;
}
.bg-01::before {
  position: absolute;
  content: "";
  background: url(../images/background/home-shape-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  opacity: 0.3;
}
.bg-01 .choose-wrapper {
  position: relative;
  margin: 1.875rem 0rem;
  background: #fff;
  border: 0.0625rem solid rgba(126, 60, 249, 0.2);
  transition: ease-in-out 0.5s;
  overflow: hidden;
  transform: translateY(0);
}
.bg-01 .choose-wrapper:hover {
  background: var(--tertiary-yellow);
  border: 1px solid #fff;
  transform: translateY(-5px);
}
.bg-01 .choose-wrapper:hover::before {
  background: #fff;
  color: var(--tertiary-yellow);
}
.bg-01 .choose-wrapper:hover .icon {
  background: #fff !important;
}
.bg-01 .choose-wrapper:hover .sentence h3 {
  color: #fff !important;
}
.bg-01 .choose-wrapper:hover .sentence h3::before {
  border: dashed 1px #fff !important;
}
.bg-01 .choose-wrapper:hover .sentence p {
  color: #fff !important;
}
.bg-01 .choose-wrapper::before {
  position: absolute;
  content: "01";
  height: 6.25rem;
  width: 6.25rem;
  display: block;
  line-height: 6.25rem;
  padding: 1.25rem;
  right: -2.5rem;
  top: -2.5rem;
  background: var(--tertiary-yellow);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  transition: ease-in-out 0.5s;
  border-radius: 3.125rem;
}
.bg-01 .choose-wrapper .content {
  position: relative;
  display: block;
  padding: 30px 20px;
}
.bg-01 .choose-wrapper .content .icon {
  margin: 0 0 0.625rem 0;
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 3.125rem;
  background: #ffedf2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-01 .choose-wrapper .content .icon i {
  color: var(--tertiary-yellow);
}
.bg-01 .choose-wrapper .content .sentence {
  position: relative;
  margin: 1.25rem 0 0 0;
}
.bg-01 .choose-wrapper .content .sentence h3 {
  font-size: 1.25rem;
  color: #333333;
  margin: 0 0 0.625rem 0;
  padding: 0 0 0.625rem 0;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
}
.bg-01 .choose-wrapper .content .sentence h3::before {
  position: absolute;
  content: "";
  width: 20%;
  border: dashed 1px var(--tertiary-yellow);
  bottom: 0;
  left: 35%;
}
.bg-01 .choose-wrapper .content .sentence p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6875rem;
}
.bg-01 .three {
  position: relative;
}
.bg-01 .three::before {
  content: "03";
}
.bg-01 .two {
  position: relative;
}
.bg-01 .two::before {
  content: "02";
}
.bg-01 .four {
  position: relative;
}
.bg-01 .four::before {
  content: "04";
}

.heading {
  position: relative;
  padding: 0 0 0.625rem 0;
  display: inline-block;
}
.heading h2 {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #2f0063;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  margin-top: 10px;
}

.bg-02 {
  padding: 3.125rem 0rem;
  background: #f3f8fc;
  position: relative;
  overflow: hidden;
}
.bg-02 .content {
  margin: 1.875rem 0rem;
  position: relative;
}
.bg-02 .content h2 {
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #2f0063;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
}
.bg-02 .content p {
  line-height: 1.75rem;
  font-size: 1.0625rem;
  color: #333333;
  margin: 0 0 1.25rem 0;
}
.bg-02 .content .shap-img {
  position: relative;
  text-align: center;
}
.bg-02 .content .shap-img .shap-img-1 {
  border-radius: 5px;
  height: 60%;
  width: 60%;
}
.bg-02 .content .shap-img .shap-img-2 {
  width: 30%;
  position: absolute;
  top: 20%;
  left: 0;
  border-radius: 5px;
}
.bg-02 .content .shap-img .shap-img-3 {
  width: 30%;
  position: absolute;
  left: 70%;
  top: 20%;
  border-radius: 5px;
}

.bg-03 {
  padding: 3.125rem 0rem;
  position: relative;
  overflow: hidden;
}
.bg-03 .cat-wrapper {
  margin: 1.875rem 0rem;
  position: relative;
  padding: 20px 25px;
  background: #fff;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  transition: ease-in 0.2s;
  transform: translateY(0);
}
.bg-03 .cat-wrapper:hover {
  transform: translateY(-5px);
}
.bg-03 .cat-wrapper .content {
  display: block;
  text-align: center;
}
.bg-03 .cat-wrapper .content img {
  margin: 0.625rem 0;
}
.bg-03 .cat-wrapper .content h3 {
  font-size: 1.25rem;
  color: #333333;
  margin: 0 0 0.625rem 0;
  font-weight: 700;
}
.bg-03 .cat-wrapper .content p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6875rem;
  margin: 0 0 0.625rem 0;
}

.bg-04 {
  padding: 3.125rem 0;
  background: url(../images/background/1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.bg-04::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #202c45e0;
}
.bg-04 .cal-01 {
  position: relative;
  height: 9.375rem;
  width: 9.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: dashed 0.0625rem #fff;
  transition-duration: 0.3s;
  z-index: 9;
  margin: 0.625rem auto;
}
.bg-04 .cal-01::before {
  position: absolute;
  content: "";
  background: var(--tertiary-yellow);
  color: var(--tertiary-red);
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition-duration: 0.5s;
  z-index: 1;
}
.bg-04 .cal-01:hover::before {
  width: 100%;
}



.bg-04 .cal-01 i {
  color: #fff;
  font-size: 2.5rem;
  padding: 0 0 0.625rem 0;
  position: relative;
  z-index: 2;
}


.bg-04 .cal-01 .counting {
  font-size: 1.375rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.icon-text {
  color: aliceblue;
  z-index: 1;
}

.bg-04 .cal-01:hover{
  color: var(--tertiary-red);
}
.bg-05 {
  padding: 3.125rem 0;
  position: relative;
  overflow: hidden;
}
.bg-05 .team-wrapper {
  position: relative;
  margin: 1.875rem 0;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.bg-05 .team-wrapper .team-content {
  padding: 0.625rem 0.9375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  display: block;
}
.bg-05 .team-wrapper .team-content h3 {
  font-size: 1.25rem;
  color: #333333;
  font-weight: normal;
}
.bg-05 .team-wrapper .team-content p {
  font-size: 1rem;
  color: #666666;
  display: block;
  margin: 0 0 0.3125rem 0;
}
.bg-05 .team-wrapper .team-content ul li {
  display: inline-block;
  margin: 0.3125rem 0 0 0.3125rem;
  position: relative;
}
.bg-05 .team-wrapper .team-content ul li a {
  position: relative;
  height: 1.875rem;
  width: 1.875rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #efefef;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 0.75rem;
  color: var(--tertiary-red);
  transition: all 0.3s;
  -webkit-transition: all 0.4s;
  z-index: 2;
  overflow: hidden;
}
.bg-05 .team-wrapper .team-content ul li a:hover {
  color: #fff;
}
.bg-05 .team-wrapper .team-content ul li a:hover::before {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.bg-05 .team-wrapper .team-content ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(0.6);
  border-radius: 50%;
  z-index: -1;
  background: var(--tertiary-red);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}

.bg-06 {
  padding: 3.125rem 0;
  position: relative;
  background: #f3f8fc;
  overflow: hidden;
}
.bg-06 .blog-sub {
  position: relative;
  margin: 20px 0px;
  padding: 20px 0px;
}
.bg-06 .blog-sub .blog-content {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  position: relative;
  display: block;
  overflow: hidden;
}
.bg-06 .blog-sub .blog-content-section {
  padding: 20px 25px;
  background: #fff;
  border: solid 1px #eee8e8;
  border-top: 0;
  display: block;
  width: 100%;
}
.bg-06 .blog-sub .blog-content-section .blo-content-title h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  padding: 3px 0px;
}
.bg-06 .blog-sub .blog-content-section .blo-content-title p {
  padding: 3px 0px;
  line-height: 27px;
  color: #666666;
}
.bg-06 .blog-sub .blog-content-section .blog-admin {
  margin: 5px 0px;
}
.admission-icon{
  margin-left: 3px;
  color: var(--tertiary-red);
}
.bg-06 .blog-sub .blog-content-section .blog-admin ol li {
  display: inline-block;
  color: var(--tertiary-red);
  font-size: 15px;
  margin: 0 5px 0 0;
}
.bg-06 .blog-sub .blog-content-section .blog-admin ol li i {
  padding: 0 5px 0 0;
}

.abt-01 {
  padding: 3.125rem 0;
  background: url(../images/slider/3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.abt-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--tertiary-red);
  opacity: 0.6;
  left: 0;
  top: 0;
  z-index: -1;
}
.abt-01 .seting {
  padding: 20px 0px;
  text-align: center;
}
.abt-01 .seting h3 {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 10px 0px;
}
.abt-01 .seting ol li {
  display: inline-block;
  padding: 20px 0px;
  font-size: 16px;
  color: #dddddd;
}
.abt-01 .seting ol li i {
  color: #dddddd;
  margin: 0 10px;
}

.bg-001 {
  padding: 50px 0px;
  position: relative;
  background: #f6f9fe;
  overflow: hidden;
}
.bg-001 .contact-box {
  position: relative;
  display: block;
  margin: 20px 0px;
  padding: 20px 0px;
}
.bg-001 .contact-box .my-form {
  position: relative;
  display: block;
}
.bg-001 .contact-box .my-form .form-group {
  padding: 20px 0px;
  margin: 0px;
}
.bg-001 .contact-box .my-form .form-group textarea {
  height: 150px !important;
}
.bg-001 .contact-box .my-form .form-group .link a {
  background: var(--tertiary-red);
  display: inline-block;
  padding: 8px 26px;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  text-transform: uppercase;
}
.bg-001 .contact-box .my-form .form-group .form-control {
  height: 50px;
  font-size: 14px;
  padding: 0 15px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.bg-001 .contact-box ul li {
  font-size: 0.9rem;
  color: #666666;
  line-height: 20px;
  margin: 15px 0px;
  position: relative;
  padding: 0 0 0 40px;
}
.bg-001 .contact-box ul li:nth-child(3) {
  padding-top: 12px;
}
.bg-001 .contact-box ul li:nth-child(3)::before {
  content: "\f1fa";
}
.bg-001 .contact-box ul li:nth-child(2) {
  padding-top: 12px;
}
.bg-001 .contact-box ul li:nth-child(2)::before {
  content: "\f2a0";
}
.bg-001 .contact-box ul li::before {
  position: absolute;
  content: "\f015";
  left: 0;
  top: 5px;
  height: 30px;
  width: 30px;
  background: var(--tertiary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 5px;
  font-family: "Font Awesome 5 Pro";
}

/* ================================ Footer CSS =============================== */
footer {
  padding: 10px 0px;
  background: var(--primary-navy-blue);
  position: relative;
  overflow: hidden;
}
footer ._pl_we_sq {
  margin: 10px 0 0 0;
  border-top: 1px solid #dddddd;
  padding: 20px 0 0;
  color: #fff;
}
footer ._pl_we_sq .last-01 {
  position: relative;
  direction: inline-block;
}
footer ._pl_we_sq .last-01 p {
  letter-spacing: 0.5px;
  font-size: 16px;
  margin: 0px;
}
footer ._pl_we_sq .last-01 p a {
  margin: 0 10px;
  font-size: 13px;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: #ddd;
}
footer ._kl_ds_we {
  margin: 20px 0px;
  padding: 10px 0px;
  position: relative;
  color: #fff;
}
footer ._kl_ds_we .head-footer {
  display: block;
  position: relative;
}
footer ._kl_ds_we .head-footer .un-hover li {
  cursor: default;
}
footer ._kl_ds_we .head-footer .un-hover li:hover {
  color: #fff;
  letter-spacing: 0px;
}

footer ._kl_ds_we .head-footer ul li {
  display: block;
  padding: 10px 0px;
  color: #fff;
  cursor: pointer;
  transition: 0.7s;
}
footer ._kl_ds_we .head-footer ul li:hover {
  letter-spacing: 1px;
}

footer ._kl_ds_we .head-footer .stack .card {
  padding-top: 5px;
  cursor: pointer;
}

footer ._kl_ds_we .head-footer .stack .card p  {
  color: var(--primary-navy-blue);
  font-weight: 700;
}
footer ._kl_ds_we .head-footer .stack .card p i{
  padding-right: 8px;
  color: var(--tertiary-red);
}
footer ._kl_ds_we .head-footer ul li:hover i {
  color: #ddd;
}
footer ._kl_ds_we .head-footer ul li i {
  padding-right: 7px;
  color: #fff;
}
footer ._kl_ds_we .head-footer p {
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  margin: 10px 0px;
}
footer ._kl_ds_we .head-footer ol li {
  display: inline-block;
  padding: 0 0 0 5px;
}
footer ._kl_ds_we .head-footer h3 {
  padding: 0 0 10px 0;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 17px 0;
}
footer ._kl_ds_we .head-footer h3::before {
  position: absolute;
  content: "";
  width: 50px;
  background: var(--tertiary-red);
  height: 3px;
  bottom: 0;
  left: 0;
}

/*# sourceMappingURL=style.css.map */
