

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: serif;
  font-family: var(--fontBody);
  color: #606060;
}

a {
  color: var(--colorMain);
  text-decoration: none;
}

a:hover {
  color: var(--colorMainLL);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif;
  font-family: var(--fontHead);
  color: var(--colorAltL);
  font-size: 24px;
}

.colorMain {
  color: var(--colorMain);
}
.colorAlt {
  color: var(--colorAlt);

}

.space-below {
  padding-bottom: 20px;
}


::-moz-selection { /* Code for Firefox */
  color: white;
  background: var(--colorMain);
}

::selection {
  color: white;
  background: var(--colorMain);
}

.textShadow p {
  color: #fff;
  font-size: 26px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000 ;
}
.textShadow h1 {
  color: #fff;
  font-size: 50px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000 ;
}



/*--------------------------------------------------------------
# Video Embed
--------------------------------------------------------------*/

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 0px;
}
#header.header-scrolled {
  background: var(--colorMainLL);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0px;
}

#header .logo h1 {
  font-size: 40px;
  margin: 0;
  padding: 10px 0px 10px 0px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000 ;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 10px;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0 2px 30px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,-1px 1px 0 #000,1px 1px 0 #000 ;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--colorMainL) ;
}
.navbar .btn-menu, .navbar .btn-menu:focus {
  background: var(--colorAlt);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  text-shadow: none;
}
.navbar .btn-menuLight, .navbar .btn-menuLight:focus {
  background: #fff;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--colorAlt);
  border: 2px solid var(--colorAlt);
  font-weight: 500;
  text-shadow: none;
}
.navbar .btn-menu:hover, .navbar .btn-menu:focus:hover {
  color: #fff;
  background: var(--colorAltL);
}
.navbar .btn-menuLight:hover, .navbar .btn-menuLight:focus:hover {
  color: #fff;
  background: var(--colorAlt);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--colorMainL);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--colorAlt);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: var(--colorMain) ;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--colorAlt);
}
.navbar-mobile .btn-menu, .navbar-mobile .btn-menu:focus {
  margin: 15px;
}
.navbar-mobile .btn-menuLight, .navbar-mobile .btn-menuLight:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--colorMainL);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--colorAlt);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
.img-small {
  width: 50%;
}

.img-grey {
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}
.img-grey:hover {
  filter: none;
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-light {
  font-family: sans-serif;
  font-family: var(--fontHead);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--colorMain);
  border: 2px solid var(--colorMain);
  background: transparent;
}
.btn-light:hover {
  background: var(--colorMain);
  color: #fff;
  border: 2px solid var(--colorMain);
}

.btn-dark {
  font-family: sans-serif;
  font-family: var(--fontHead);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  background: var(--colorMain);
  color: #fff;
  border: 2px solid var(--colorMain);

}
.btn-dark:hover {
  background: transparent;
  color: var(--colorMain);
  border-color: var(--colorMain);
}

.btn-alt-light {
  font-family: sans-serif;
  font-family: var(--fontHead);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--colorAlt);
  border: 2px solid var(--colorAlt);
  background: transparent;
}
.btn-alt-light:hover {
  background: var(--colorAlt);
  color: #fff;
  border: 2px solid var(--colorAlt);
}

.btn-alt-dark {
  font-family: sans-serif;
  font-family: var(--fontHead);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  background: var(--colorAlt);
  color: #fff;
  border: 2px solid var(--colorAlt);

}
.btn-alt-dark:hover {
  background: transparent;
  color: var(--colorAlt);
  border-color: var(--colorAlt);
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

ul {
  list-style: none;
}
li.ListItem::before {
  content: "\2505";
  color: var(--colorMain);
  font-weight: bold;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}


/*--------------------------------------------------------------
#  Box
--------------------------------------------------------------*/
.box-item {
  padding: 12px;
}


/*--------------------------------------------------------------
# Pricing Box
--------------------------------------------------------------*/

.pricing-box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  color: #606060;
}
.pricing-box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}


/*--------------------------------------------------------------
# Plain Box
--------------------------------------------------------------*/
.color-box {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.3);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  background-image: linear-gradient( 170deg, var(--colorAltLLL) 0%, var(--colorAlt) 100%);
  color: #606060;
}
.color-box:hover {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.6);
}

.white-box {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.3);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  background: #fff;
  color: #606060;
}
.white-box:hover {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.6);
}

.table-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 0px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.table-box:hover {
  box-shadow: 0px 0 15px rgba(1, 41, 112, 0.4);
}



/*--------------------------------------------------------------
# Swiper Slider
--------------------------------------------------------------*/
.swiper {
  width: 100%;
  background: transparent;
}

.swiper-slide {
  width: 600px;
  height: auto;
  margin-bottom: 70px;
  background: transparent;
}

.swiper-pagination-bullet {
  background-color: var(--colorAlt);
  opacity: 20%;
}
.swiper-pagination-bullet-active {
  background-color: var(--colorAlt);
  opacity: 100%;
}


/*--------------------------------------------------------------
# Box with image
--------------------------------------------------------------*/
.post-box {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.3);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  background: #fff;
  color: #606060;
}
.post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
  width: 120% ;
  max-height: 400px;
}
.post-box .post-img img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}
.post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}
.post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
.post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.post-box:hover {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.6);
}
.post-box:hover .post-title {
  color: #4154f1;
}
.post-box:hover .post-img img {
  transform: scale(1.3);
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.accordion {
  background-color: transparent;
}
.accordion-item {
  background-color: transparent;
}
.accordion-header {
  background-color: transparent;
}

.accordion-collapse {
  border: 0;
}
.accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
  background-color: transparent;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: none;
  border-bottom: 0;
}
.accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

#section-color {
  background: var(--colorMainL);
}
#section-light {
  background-image: linear-gradient(120deg, var(--colorMainLLL) 0%, var(--colorMainLLL) 100%);
  background-repeat: no-repeat;
  background-size: 50% 70%;
  background-position: 90% 15%;
}
#section-lightAlt {
  background-image: linear-gradient(120deg, var(--colorAltLLL) 0%, var(--colorAltLLL) 100%);
  background-repeat: no-repeat;
  background-size: 50% 70%;
  background-position: 10% 10%;
}

#section-black {
  background: #222222;
  color: #fff;
}

#section-white {
  background: white;
}


.first-section {
  padding-top: 120px;
}

.section-header {

  color: var(--colorMainD);
  font-size: 50px;
}
.section-header:hover {

}



/*--------------------------------------------------------------
# Section Image
--------------------------------------------------------------*/
#section-image {
  width: 100%;
  min-height: 75vh;
  background-size: auto;
  position: relative;
  }


/*--------------------------------------------------------------
# Section Dark Image
--------------------------------------------------------------*/
#section-darkImage {
  width: 100%;
  min-height: 75vh;
  background-size: auto;
  position: relative;

}

/*--------------------------------------------------------------
# Section Gradient
--------------------------------------------------------------*/
#section-gradient {
  background-image: linear-gradient( 135deg, var(--colorMain) 0%, #222222 100%);

  width: 100%;
  min-height: 75vh;
  color: white;
}
#section-gradientDual {
  background-image: linear-gradient( 135deg, var(--colorAlt) 0%, var(--colorMainD) 100%);

  width: 100%;
  min-height: 75vh;
  color: white;
}

/*--------------------------------------------------------------
# Section Slideshow
--------------------------------------------------------------*/

#section-slideshow .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#section-slideshow {
  width: 100%;
  min-height: 75vh;
  background-color: rgba(59, 59, 59, 0.8);
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}
#section-slideshow .carousel-indicators {
  height: 12px;
}
#section-slideshow .carousel-item {
  width: 100%;
  min-height: 75vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
}
#section-slideshow .carousel-item::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#section-slideshow .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  width: 80%;
  padding-left: 20%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#section-slideshow .carousel-content {
  font-size: x-large;
  color: black;
}

#section-slideshow .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#section-slideshow .carousel-inner .carousel-item,
#section-slideshow .carousel-inner .active.carousel-item-start,
#section-slideshow .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#section-slideshow .carousel-inner .active,
#section-slideshow .carousel-inner .carousel-item-next.carousel-item-start,
#section-slideshow .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#section-slideshow .carousel-inner .carousel-item-next,
#section-slideshow .carousel-inner .carousel-item-prev,
#section-slideshow .carousel-inner .active.carousel-item-start,
#section-slideshow .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#section-slideshow .carousel-control-prev, .carousel-control-next {
  width: 10%;
}
#section-slideshow .carousel-control-next-icon, .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: #545454;
}
#section-slideshow .carousel-indicators li {
  cursor: pointer;
  background: var(--colorAlt);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}
#section-slideshow .carousel-indicators li.active {
  opacity: 1;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: var(--colorMainD);
  color: #fff;
  font-size: 14px;
  padding-top:50px;
  padding-bottom:0px;
}

#footer .footer-info {
  padding: 10px 0 10px 0;

}

#footer .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
#footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: sans-serif;
  font-family: var(--fontHead);
  color: #fff;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background:  var(--colorMain);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-bottom: 20px;
}
#footer .social-links a:hover {
  background: var(--colorMainL);
  color: #fff;
  text-decoration: none;
}
#footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-links {
  margin-bottom: 30px;
}
#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
}
#footer .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-links ul a:hover {
  color: white;
}
#footer .footer-newsletter form {
  margin-bottom: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 30px;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--colorMain);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 30px 30px 0;
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--colorMainL);
}

#copyright {
  background: var(--colorMainD);
  color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: small;
}


/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/


.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #7b809a;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #7b809a;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #7b809a;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: rgba(200,200,200,0.3);
}

.table> :not(caption)>*>* {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
  vertical-align: inherit;
}

.table>thead {
  vertical-align: bottom;
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: currentColor;
}

.table thead th {
  padding: 0.75rem 1.5rem;
  text-transform: capitalize;
  letter-spacing: 0px;
  border-bottom: 1px solid #f0f2f5;
}

.table th {
  font-weight: 600;
}

.table td .progress {
  height: 3px;
  width: 120px;
  margin: 0;
}

.table td .progress .progress-bar {
  height: 3px;
}

.table td,
.table th {
  white-space: nowrap;
}

.table.align-items-center td,
.table.align-items-center th {
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-width: 0;
}

.table> :not(:last-child)> :last-child>* {
  border-bottom-color: #f0f2f5;
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-item {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
}
.portfolio-item img {
  transition: all ease-in-out 0.3s;
  border-radius: 10px;

}
.portfolio-item:hover img {
  transform: scale(1.1);
}

