@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Jersey+10&display=swap");

:root {
  --color-body: #b6cbce;
  --color-heading: #eef3db;
  --color-base: #033f47;
  --color-base2: #022a30;
  --color-brand: #e0f780;
  --color-brand2: #deff58;
  --sidebar-width: 240px;
  --font-base: "Bao Jamjuree";
}

body {
  background-color: var(--color-base2);
  font-family: var(--font-base), sans-serif;
  color: var(--color-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
}
a {
  text-decoration: none;
  color: var(--color-body);
  transition: all 0.4s ease;
}

a:hover {
  color: var(--color-brand);
}
img {
  width: 100%;
  height: 40vh;
}
.jsp {
  width: 100%;
  height: 50%;
}
.navbar {
  background-color: var(--color-base);
}
.navbar .nav-link {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}
.header .navbar .nav-link.active {
  color: var(--color-brand2);
}
.header .navbar .nav-link:hover {
  color: var(--color-brand2);
}

@media (min-width: 992px) {
  .navbar {
    min-height: 100vh;
    width: var(--sidebar-width);
    background: linear-gradient(rgba(3, 63, 71, 0.8), rgba(3, 63, 71, 0.8)),
      url(../images/sidebar-img.jpg);
    background-size: cover;
    background-position: center;
  }
  .navbar-brand img {
    border: 8px solid var(--color-base);
    height: 26vh;
    width: 200px;
  }
  #content-wrapper {
    padding-left: var(--sidebar-width);
  }
}

/* Content-Wrapper */

.full-height {
  min-height: 100vh;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 2px solid rgba(241, 233, 233, 0.907);
}
.shadow-effect {
  transition: all 0.5s;
}
.shadow-effect:hover {
  box-shadow: -3px 3px 0 0px var(--color-brand2);
  cursor: pointer;
}
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-base);
  font-size: 52px;
  background-color: var(--color-brand2);
}
.text-brand {
  color: var(--color-brand);
}
.bg-base {
  background-color: var(--color-base);
}
.btn {
  padding: 12px 28px;
  font-weight: 700;
}
.btn-brand {
  background-color: var(--color-brand2);
  border-color: var(--color-base);
}
.btn-brand:hover,
.btnbrand:focus {
  background-color: var(--color-brand2);
  color: var(--color-base);
  border-color: var(--color-brand2);
}
.link-custom {
  font-weight: 700;
  position: relative;
}
.link-custom::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--color-brand2);
  position: absolute;
  left: 0;
  top: 110%;
  transition: all 0.4s;
}

.link-custom:hover::after {
  width: 100%;
}

.card-custom .card-custom-image {
  overflow: hidden;
}
.card-custom .card-custom-image img {
  transition: all 0.5s ease;
}
.card-custom:hover .card-custom-image img {
  transform: scale(1.1);
}
.card-display {
  min-height: 100%;
}
/* contact */
#cont .form-control {
  background-color: var(--color-base);
  color: var(--color-body);
  border-color: var(--color-base);
}
#cont .form-control:focus {
  border-color: var(--color-brand);
  box-shadow: none;
}

#cont .form-control::placeholder {
  color: var(--color-body);
}
#cont input.form-control {
  height: 44px;
}
.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--color-base);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 18px;
}
@media (max-width: 442px) {
  .link-custom {
    display: block;
    padding-block: 15px;
  }
}

.myimg {
  /* width:120%; */
}
