* {
  margin: 0;
  padding: 0;
  font-family: "Fredoka", cursive;
}

:root {
  --shelly-color-background: #f5fcff;
  --shelly-color-primary: #f37335;
  --shelly-color-secondary: #135e9e;
  --shelly-color-accent: #fdc12a;
  --shelly-color-text: #494949;
  --shelly-color-subtext: #677784;
  --shelly-color-divider: #c9e2f8;
  --shelly-color-h6: #494949;
  --primary-color: #0284ed;
  --secondary-color: #e52017;
  --grey: #f2f3f8;
  --blackish-color: #404040;
  --box-shadow-float: 0px 17px 10px -10px rgb(0 0 0 / 40%);
  --box-shadow: 0 0 0.5rem 0 #c9e2f899;
  --hero-height: 50rem;
  
              --hue: 223;
    --bg: hsl(var(--hue), 10%, 90%);
    --fg1: hsl(var(--hue), 10%, 10%);
    --fg2: hsl(var(--hue), 10%, 30%);
    --fg3: hsl(var(--hue), 10%, 70%);
    --primary: hsl(var(--hue), 90%, 55%);
    --primary-t: hsla(var(--hue), 90%, 55%, 0);
    --primary-t-hover: hsla(var(--hue), 90%, 55%, 0.15);
    --trans-dur1: 0.3s;
    --trans-dur2: 0.6s;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem !important;
  /* background: var(--shelly-color-background); */
  color: var(--shelly-color-text);
}

#loading {
  position: fixed;
  width: 100vw;
  top: 7rem;
  height: calc(100% - 7rem);
  z-index: 9999;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  height: auto;
  width: 50vw;
  max-width: 30rem;
}

h1 {
  font-size: 4rem;
  color: var(--shelly-color-text);
}

h2 {
  font-size: 3.2rem;
  color: var(--shelly-color-text);
}

h3 {
  font-size: 2.8rem;
  color: var(--shelly-color-text);
}

h4 {
  font-size: 2.4rem;
  color: var(--shelly-color-text);
}

h5 {
  font-size: 2rem;
  color: var(--shelly-color-text);
}

h6 {
  font-size: 1.6rem;
  color: var(--shelly-color-text);
}

.btn {
  font-size: 1.6rem;
  color: var(--shelly-color-text);
}

p {
  font-size: 1.6rem;
  color: var(--shelly-color-text);
}

input {
  outline: none;
}

.modal-dialog {
  top: 50%;
  transform: translateY(-50%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

.container,
.container-fluid {
  height: auto;
  width: 100%;
  padding: 0;
}

.row {
  height: auto;
  width: 100%;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

strong {
  padding: 0;
  margin: 0;
}
label,
a {
  text-decoration: none;
  color: #555;
}
ul {
  list-style: none;
  padding: 0;
}

.datepicker-container {
  z-index: 10000 !important;
}

.modal-dialog {
  -webkit-animation: flipInX 1s ease;
}

select {
  appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.9rem top 1.7rem !important;
  background-size: 1em !important;
  cursor: pointer;
}

.container {
  max-width: 1300px;
}

.custom-link {
  color: var(--shelly-color-primary);
  text-transform: capitalize;
  font-size: 1.6rem !important;
  font-weight: 700;
  margin-left: 1rem;
}

.custom-btn {
  background: var(--shelly-color-primary);
  color: white;
  text-transform: capitalize;
  font-size: 1.3rem !important;
  padding: 1rem 3rem;
  border-radius: 50px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}
.custom-btn:focus {
  box-shadow: none;
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);
}
.custom-btn:hover {
  color: white;
}
.custom-btn i {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.line-under {
  width: 100%;
  height: 2px;
  background: var(--shelly-color-divider);
}

.media-body {
  width: auto;
}

.media {
  align-items: center;
}

.media-body {
  margin-left: 1rem;
}

.media-body h5 {
  font-weight: 700;
}

.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  background-color: var(--primary-color);
}

/*-----------------------------------------------------------Sticky----------------------------------------------------------------*/

#sticky-section {
    position: absolute;
    z-index: 999;
}

#sticky-section .social-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-30%);
}

#sticky-section .social-icons ul {
    list-style: none;
}

#sticky-section .social-icons ul li {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-bottom: 1px solid gainsboro;
    cursor: pointer;
    transition: all 0.3s;
}

#sticky-section .social-icons ul li i {
    font-size: 15px;
    border-radius: 50%;
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sticky-section .social-icons ul li:nth-child(1) i {
    background: rgb(45, 75, 156);
}

#sticky-section .social-icons ul li:nth-child(2) i {
    background: rgb(10, 194, 207);
}

#sticky-section .social-icons ul li:nth-child(3) i {
    background: rgb(177, 28, 48);
}

#sticky-section .social-icons ul li:nth-child(4) i {
    background: rgb(233, 28, 113);
}

#sticky-section .social-icons ul li a {
    width: 0;
    overflow: hidden;
    font-size: 12px;
    transition: all 0.3s;
}

#sticky-section .social-icons ul li.open {
    width: 240px;
}

#sticky-section .social-icons ul li.open i {
    margin-right: 15px;
}

#sticky-section .social-icons ul li.open a {
    width: 200px;
}

#sticky-section .contact {
    position: fixed;
    top: 50%;
    transform: translateY(-30%);
}

#sticky-section .contact .icon {
    background: #af0f24;
    color: white;
    padding: 5px 10px;
    font-size: 20px;
    width: 40px;
    height: 132px;
    cursor: pointer;
}

#sticky-section .contact .icon.open .text {
    width: 200px;
    color: black;
}

#sticky-section .contact .icon.open .text h6 {
    color: white;
    background: #3db166;
    padding: 5px;
    text-align: center;
    font-weight: 700;
}

#sticky-section .contact .icon.open .text p {
    padding: 5px;
}

#sticky-section .contact .icon span {
    display: block;
    transform: rotate(90deg);
}

#sticky-section .contact .text {
    width: 0;
    overflow: hidden;
    transition: all 0.6s;
    background: whitesmoke;
    margin-top: -35px;
    margin-left: 32px;
    font-size: 15px;
}

#sticky-section .phone {
    position: fixed;
    bottom: 10px;
    left: 10px;
}

#sticky-section .phone a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 25px;
    color: white;
    animation: shake 1.5s cubic-bezier(.36, .07, .19, .97) both infinite;
    transform: translate3d(0, 0, 0);
}

#sticky-section .phone a:nth-child(1) {
    background: #af0f24;
}

#sticky-section .phone a:nth-child(2) {
    background: #0d9c3f;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}


/*-----------------------------------------------------------Scroller----------------------------------------------------------------*/

/* width */

::-webkit-scrollbar {
  width: 0;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: rgb(200, 199, 199);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: rgb(200, 199, 199);
}

/*-------------------------------------Topbar----------------------------------*/

#topbarSection {
  /* background: var(--secondary-color); */
  background: rgb(16, 31, 46);
  padding: 1rem 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#topbarSection .contactLinks li,
#topbarSection .socialLinks li {
  display: inline-block;
  padding: 0 1.5rem;
}
#topbarSection .contactLinks li a,
#topbarSection .socialLinks a {
  color: white;
}
#topbarSection .contactLinks li a i,
#topbarSection .socialLinks a i {
  color: #ffffff;
}

/*-------------------------------------Header----------------------------------*/

#headerSection {
  padding: 0.5rem 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .hamburger {
  font-size: 2rem;
  display: none;
}

.headerContact i {
  font-size: 5rem;
  color: var(--primary-color);
}

/*-------------------------------------Navbar----------------------------------*/

#navbar {
  width: 100%;
  color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-radius: 3px;
  position: relative;
  z-index: 999;
  background: #041844;
}

@media screen and (max-width: 668px) {
  #navbarSection .col-md-12 {
    padding: 0;
  }
}

#navbar ul {
  margin: 0;
  list-style: none;
  transition: all 0.5s;
  background: #041844;
}

#navbar ul li {
  display: inline-block;
  position: relative;
}

#navbar ul li a {
  display: block;
  padding: 5px 10px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

#navbar ul li ul {
  position: absolute;
  z-index: 5;
  top: 45px;
  width: max-content;
  background: #eeeeee;
  height: 0;
  overflow: hidden;
}

#navbar ul li ul li {
  display: block;
}

#navbar ul li ul li a {
  padding: 0 10px;
  z-index: 999;
  border-bottom: 0;
  color: black;
  text-transform: capitalize;
}

#navbar ul li:hover ul li a {
  padding: 5px 10px;
}

#navbar ul li:nth-child(2):hover ul {
  height: 180px;
}

#navbar ul li:nth-child(3):hover ul {
  height: 80px;
}

#navbar ul li:nth-child(6):hover ul {
  height: 80px;
}

.hamburger {
  width: 25px;
  margin-right: 10px;
  display: none;
  position: absolute;
  right: 0;
  top: 8px;
  cursor: pointer;
}

.hamburger div {
  width: 100%;
  height: 2px;
  margin-bottom: 4px;
  background: rgb(0, 0, 0);
  transition: all 0.3s;
}
#navAddLink {
  display: none;
  padding: 1rem 1.6rem;
  background: #000;
}
#headAddLink {
  background: #000;
}
@media (max-width: 668px) {
  #topbarSection .contactLinks li.email {
    display: none;
  }
  .hamburger {
    display: block;
  }
  #navbar {
    display: block;
    background: white;
  }
  #navAddLink {
    display: inline-block;
  }
  #headAddLink {
    display: none;
  }
  #navbar > ul {
    height: 0;
    overflow: hidden;
  }
  #navbar ul li {
    display: block;
  }
  #navbar ul li a {
    border-bottom: 1px dotted gray;
    padding: 5px 10px;
  }
  #navbar ul li ul {
    position: relative;
    top: 0;
    width: 100%;
  }
  #navbar ul li ul li a {
    padding: 0 10px;
    padding-left: 80px;
  }
  #navbar ul li:hover ul li a {
    padding: 5px 10px;
    padding-left: 80px;
    border-bottom: 1px dotted gray;
  }
  #navbar ul li:nth-child(4):hover ul {
    height: 140px;
  }
  #navbar ul li:nth-child(7):hover ul {
    height: 72px;
  }
}

#navbar.open > ul {
  height: 310px;
}

#navbar.open.sec > ul {
  height: 1200px;
}

#navbar.open .hamburger .div1 {
  transform: rotate(38deg);
}

#navbar.open .hamburger .div3 {
  transform: rotate(-38deg);
}

#navbar.open .hamburger .div2 {
  display: none;
}

/*-------------------------------------Hero----------------------------------*/

#heroSection .swiper-slide {
  height: 60rem;
  width: 100%;
}

#heroSection.sec .swiper-slide {
  height: 40rem;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

#heroSection .swiper-slide {
  text-align: center;
}

#heroSection .slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 60rem;
}

@media (max-width: 668px) {
  #heroSection .swiper-slide {
    height: 30rem;
  }

  #heroSection.sec .swiper-slide {
    height: 20rem;
  }
  #heroSection .slider-container {
    height: 30rem;
  }
}

#heroSection .slider-sub-title {
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 9.2px;
  color: #ffffff;
}

#heroSection .slider-title {
  font-size: 70px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: -1.03px;
  color: #ffffff;
  padding: 50px 0px;
  opacity: 1;
}

#heroSection .slider-buttton {
  font-weight: 600;
  letter-spacing: 1.29px;
  border: solid 1px #ffffff;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
}

#heroSection .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#heroSection .slider-buttton {
  display: inline-block;
}

#heroSection .swiper-slide-active .slider-sub-title {
  animation: rollIn 1s;
}

#heroSection .swiper-slide-active .slider-title {
  animation: fadeInUp 1.5s;
}
#heroSection .swiper-slide-active.slide-2 .slider-title {
  animation: fadeInRight 1.5s;
}
#heroSection .swiper-slide-active.slide-3 .slider-title {
  animation: fadeInLeft 1.5s;
}

#heroSection .swiper-slide-active .slider-buttton {
  animation: zoomIn 2s;
}

/*-------------------------------------Trades----------------------------------*/

#tradeSection {
}

#tradeSection .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: rgb(253, 253, 253);
  box-shadow: 0 0 29px 0 rgb(18 66 101 / 8%);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#tradeSection .icon-box:hover {
  transform: scale(1.08);
}

#tradeSection .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#tradeSection .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#tradeSection .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#tradeSection .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*-------------------------------------About----------------------------------*/

.about-area {
}

.section-title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 54px;
  color: #07294d;
  margin-bottom: 2rem;
}

.section-title.sec {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title span {
  color: #0c8b51;
}

.about-content p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #07294d;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 2px solid #07294d;
}

.about-content.message {
  padding-left: 8rem;
}

@media screen and (max-width: 668px) {
  .about-content.message {
    padding-left: 0;
  }
}

.about-image img {
  height: 35rem;
  border-radius: 5px;
  box-shadow: var(--box-shadow-float);
}

/*-------------------------------------Gallery----------------------------------*/

#gallerySection {
  background: rgb(16, 31, 46);
}

.galleryCards {
  /* display: grid; */
  /* grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); */
  /* gap: 2rem; */
  margin: 0 auto;
  /* max-width: 1200px; */
  /* padding: 2rem 1rem; */
  display: flex;
  flex-wrap: wrap;
}

.galleryCards .card {
  padding: 0.9rem;
  border-radius: 4px;
  background-color: #fff;
  transition: transform 300ms ease-in;
  box-shadow: 0 1px 1px hsl(0deg 0% 0% / 0.075),
    0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075),
    0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
  margin: 1rem;
  width: 300px;
  max-height: 250px;
  cursor: pointer;
}

.galleryCards .card-wrapper {
  position: relative;
  overflow: hidden;
}
.galleryCards img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: bottom;
  border-radius: 3px;
  transition: transform 500ms linear;
}

.galleryCards .card-wrapper:hover img {
  transform: scale(1.1);
}

.galleryCards .hidden-cover {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transition: transform 250ms ease-in;
  background: linear-gradient(transparent 5%, hsl(0, 0%, 5%, 0.6));
  transform-origin: top;
  will-change: transform;
}

.galleryCards .card-wrapper:hover .hidden-cover {
  transform: scaleY(1);
}
.galleryCards h4 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 2rem;
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  overflow: hidden;
  font-family: "Oswald";
  color: hsl(0, 0%, 100%);
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(100%);
  transform-origin: bottom;
  transition: transform 250ms ease-out;
  will-change: transform;
}

.galleryCards .card-wrapper:hover h4 {
  transform: translateY(-2rem);
}

/*-------------------------------------Notice----------------------------------*/

.notice-board {
  /* border: 1px solid #ccc; */
  height: 35rem;
  padding: 5px;
  position: relative;
  border-top: 4px solid var(--primary-color);
  border-bottom: 4px solid var(--primary-color);
  background: var(--shelly-color-background);
}
.notice-head {
  /* position: absolute; */
  background: #0284ed;
  /* transform: translateX(-50%); */
  padding: 0.8rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 4px #000;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 1.8rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.notice-head:before {
  position: absolute;
  height: 0px;
  width: 0px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
  border-bottom: 10px solid var(--primary-color);
  top: 0px;
  left: -20px;
  content: " ";
}
.notice-head h5 {
  color: #fff;
  margin: 0;
}
.notice-head:after {
  position: absolute;
  height: 0px;
  width: 0px;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--primary-color);
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color);
  top: 0px;
  right: -20px;
  content: " ";
}
.notice-body {
  padding-top: 5px !important;
  padding-bottom: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-top: 10px;
  height: 100%;
}
.notice-body marquee {
  height: calc(100% - 5rem);
  margin-top: 5px;
  width: 100%;
}
.notice-body marquee ul li {
  border: 1px dashed gainsboro;
  border-left: none;
  border-right: none;
  padding: 0.8rem 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.8rem;
}
.notice-body marquee ul li span {
  background: black;
  color: white;
  width: 5rem;
  height: 5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 13px;
  font-size: 1.4rem;
  margin-right: 1.5rem;
  position: absolute;
}
.notice-body marquee ul li p {
  padding-left: 6.5rem;
}

.notice-body marquee ul li span.not-date {
  color: gray;
  font-style: italic;
  position: absolute;
  right: 5px;
  bottom: 0;
  font-size: 1.2rem;
}

/*-------------------------------------Placement----------------------------------*/

#placementSection {
  background: url(../img/hero-2.jpg);
}

#placementSection .profileSection {
  display: flex;
  flex-wrap: wrap;
}

#placementSection .profile-card {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 7rem;
  margin-right: 2rem;
}

#placementSection .profile-image {
  position: relative;
  top: -60px;
  border-radius: 1rem;
  width: 11rem;
  height: 11rem;
  background-position: center;
  background-size: cover;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.4);
  margin: auto;
}

#placementSection .profile-info {
  text-align: center;
  margin-top: -5rem;
  margin-bottom: 1rem;
}

#placementSection .profile-info > .profile-name {
  color: #212121;
}

#placementSection .profile-info > .profile-desc {
  color: #666666;
  font-size: 1.6rem;
}

#placementSection .profile-info > .profile-det {
  color: #666666;
  font-size: 1.8rem;
}

#placementSection .profile-info > .profile-det > span {
  font-weight: 700;
}

#placementSection .status {
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-align: center;
  line-height: 1rem;
  margin-bottom: 1.3rem;
}

#placementSection .status-value {
  color: #212121;
  font-weight: 700;
}

#placementSection .status-text {
  font-size: 0.8rem;
  color: #7c7c7d;
}

#placementSection .action {
  display: flex;
  justify-content: space-between;
}

#placementSection .btn {
  border: none;
  padding: 0.8em 1.9em;
  border-radius: 0.35rem;
  cursor: pointer;
  font-weight: 600;
}

#placementSection .btn-pink {
  background: #b82151;
  color: white;
}

#placementSection .btn-gray-outline {
  border: 1px solid;
  background: transparent;
  color: #b82151;
}

/*-------------------------------------Projects----------------------------------*/

.sectionClass {
  position: relative;
  display: block;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}

.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}

.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101f2e;
}
.headerLine.white {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #ffffff;
}

#projectSection {
}

.projectFactsWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#projectFacts .fullWidth {
  padding: 0;
}

.projectFactsWrap .item {
  width: 25%;
  height: 100%;
  padding: 3rem 0px;
  text-align: center;
  margin: 1rem;
}

.projectFactsWrap .item:nth-child(1) {
  background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2) {
  background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3) {
  background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4) {
  background: rgb(23, 44, 66);
}

.projectFactsWrap .item p.number {
  font-size: 3rem;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: "Open Sans";
}

.projectFactsWrap .item span {
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}

.projectFactsWrap .item i {
  vertical-align: middle;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
  color: white;
}

.projectFactsWrap .item:hover span {
  background: white;
}

.projectFactsWrap .item {
  flex: 0 0 22%;
}

@media (max-width: 786px) {
  .projectFactsWrap .item {
    flex: 0 0 45%;
  }
}

/*-------------------------------------Footer----------------------------------*/

#footerSection {
  background: #152f4f;
  color: white;
  padding: 3rem 0;
}
#footerSection .links ul {
  list-style-type: none;
}
#footerSection .links li a {
  color: white;
  transition: color 0.2s;
  margin-bottom: 0.5rem;
  display: inline-block;
}
#footerSection .links li a:hover {
  text-decoration: none;
  color: #4180cb;
}
#footerSection .about-company i {
  font-size: 25px;
}
#footerSection .about-company a {
  color: white;
  transition: color 0.2s;
}
#footerSection .about-company a:hover {
  color: #4180cb;
}
#footerSection .location i {
  font-size: 18px;
}
#footerSection .location h4,
#footerSection .location p {
  color: white;
}
#footerSection .copyright p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*--------------------------------------Form-------------------------------*/

.form-input-control {
  position: relative;
  margin-bottom: 4rem;
}

.form-input-control .input__field {
  /* padding: 1rem 0px; */
  position: relative;
}

.form-input-control .form__input__icon {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  color: #7875b5;
  transform: translateY(-50%);
}

.form-input-control .form__input__icon {
  position: absolute;
  top: 50%;
  left: 0;
  color: #7875b5;
  transform: translateY(-50%);
  height: 100%;
  width: 5rem;
  text-align: center;
  line-height: 4.5rem;
  color: white;
  background: #25446b;
}

.form-input-control .form__input {
  border: 2px solid #25446b;
  background: none;
  padding: 1rem;
  padding-left: 6rem;
  font-weight: 700;
  width: 75%;
  transition: 0.2s;
  width: 100%;
  outline: none;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  color: #424242;
}

.form-input-control .field input:focus,
.form-input-control .field input:not(:placeholder-shown),
.form-input-control .field textarea:focus,
.form-input-control .field textarea:not(:placeholder-shown) {
  border-color: #25446b;
}

.form-input-control .field label {
  position: absolute;
  top: 50%;
  left: 4rem;
  color: #757575;
  font-weight: 700;
  font-size: 1.5rem;
  pointer-events: none;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  top: -2rem;
  left: 0;
}

.form-input-control .field input:focus ~ label,
.form-input-control .field input:not(:placeholder-shown) ~ label,
.form-input-control .field textarea:focus ~ label,
.form-input-control .field textarea:not(:placeholder-shown) ~ label {
  top: 0%;
  font-size: 1.3rem;
  color: #25446b;
  background: #fff;
  transform: translateY(-50%);
}

.form-input-control.error {
  padding-bottom: 2.5rem;
}

.form-input-control.success .field input {
  border-color: #2ecc71;
}

.form-input-control.error .field input {
  border-color: #e74c3c;
}

.form-input-control > i {
  visibility: hidden;
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.form-input-control.avatar-upload > i {
  visibility: hidden;
  position: absolute;
  right: -2rem;
  top: 1.5rem;
}

.form-input-control.success i.fa-check-circle {
  color: #2ecc71;
  visibility: visible;
}

.form-input-control.error i.fa-exclamation-circle {
  color: #e74c3c;
  visibility: visible;
}

.form-input-control small {
  color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 5rem;
  font-size: 1.5rem !important;
  visibility: hidden;
  font-style: italic;
}

.form-input-control.avatar-upload small {
  position: relative;
  left: 0;
}

.form-input-control.error small {
  visibility: visible;
}

.form-input-control .select2-container {
  padding-left: 5rem !important;
  border: none !important;
  border-bottom: 2px solid #d1d1d4 !important;
  background: none;
  padding: 1rem !important;
  padding-left: 4rem !important;
  font-weight: 700 !important;
  width: 75% !important;
  transition: 0.2s !important;
  width: 100% !important;
  outline: none !important;
  font-size: 1.5rem !important;
  border-radius: 2.5rem !important;
  transition: all 0.3s ease !important;
  color: #424242 !important;
}

.form-input-control .select2-container--default .select2-selection--single {
  border: none !important;
}

.form-input-control
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 1.2rem !important;
  right: 0.5rem !important;
}

.select2-container--open .select2-dropdown {
  left: 0px !important;
  top: -1.6rem !important;
  padding-top: 0.5px !important;
}
/*-----------------------------------------------------------Avtar---------------------------------------------------------------------*/

.avatar-upload {
  position: relative;
  margin: 2rem auto;
  width: 18rem;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 7rem;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  /*border-radius: 100%;*/
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit label:after {
  content: "\f040";
  font-family: "FontAwesome";
  color: #757575;
  position: absolute;
  top: 6px;
  left: 2px;
  right: 0;
  text-align: center;
  margin: auto;
}
.avatar-preview {
  width: 18rem;
  height: 15rem;
  position: relative;
  /*border-radius: 100%;*/
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-preview > div {
  width: 100%;
  height: 100%;
  /*border-radius: 100%;*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: var(--box-shadow-float);
}

.checkbox-label {
  display: flex;
  padding: 0.375em;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.checkbox-label + .checkbox-label {
  margin-left: 2em;
}

/* Default */
.checkbox-group {
  margin-bottom: 1.25em;
}
.checkbox {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}
.checkbox-text {
  color: var(--fg1);
  font-weight: 700;
  transition: color var(--trans-dur1);
}
.checkbox-text:after {
  background-color: var(--primary-t);
  border-radius: 0.375em;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: background-color 0.15s linear;
}
.check-icon {
  margin-right: 0.5em;
  width: 4em;
  height: 1.9em;;
}
.check-icon__box {
  stroke: var(--fg3);
  transition: stroke var(--trans-dur1);
}
.check-icon__box-worm,
.check-icon__check-worm {
  stroke: var(--primary);
  transition: stroke var(--trans-dur1),
    stroke-dashoffset var(--trans-dur2) cubic-bezier(0.42, -0.2, 0.58, 1.2);
}

/* Focus and hover */
.checkbox:focus ~ .checkbox-text:after,
.checkbox:hover ~ .checkbox-text:after {
  background-color: var(--primary-t-hover);
}
.checkbox:checked + .check-icon .check-icon__box-worm,
.checkbox:indeterminate + .check-icon .check-icon__box-worm {
  stroke-dashoffset: -91;
}
.checkbox:checked + .check-icon .check-icon__check-worm {
  stroke-dashoffset: -6;
}
.checkbox:indeterminate + .check-icon .check-icon__box-worm {
  stroke-dashoffset: -111.38;
}
.checkbox:indeterminate + .check-icon .check-icon__check-worm {
  stroke-dashoffset: -26.38;
}

/* `:focus-visible` support */
@supports selector(:focus-visible) {
  .checkbox:focus ~ .checkbox-text:after {
    background-color: var(--primary-t);
  }
  .checkbox:focus-visible ~ .checkbox-text:after,
  .checkbox:hover ~ .checkbox-text:after {
    background-color: var(--primary-t-hover);
  }
}

        .show-img {
            z-index: 999;
            width: 100%;
            height: 100vh;
            position: fixed;
            top: 0;
        }

        .show-img .overlay {
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .66);
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0.5;
        }

        .show-img .img-show {
            position: relative;
            text-align: center;
            max-width: 90%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: fit-content;
            border: 5px solid white;
            max-height: 80vh;
        }

        .img-show span {
            position: absolute;
            top: -1rem;
            right: -1rem;
            z-index: 99;
            cursor: pointer;
            color: black;
            font-size: 6rem;
            background: red;
            color: white;
            border-radius: 50%;
            width: 4.5rem;
            height: 4.5rem;
            font-size: 2.5rem;
            box-shadow: var(--box-shadow-float);
            text-align: center;
            line-height: 4.5rem;
        }

        .img-show img {
            width: 100%;
            max-height: calc(80vh - 10px);
        }


/*-------------------------------------Responsive----------------------------------*/

.section-margin {
  margin: 2rem 0;
  padding: 2rem 0;
}

.section-margin.p0 {
  padding: 0;
}

.header .logo img {
  width: 70%;
}

@media screen and (max-width: 668px) {
  html {
    font-size: 8px;
  }
  .section-margin {
    margin: 1rem 0;
  }

  .header .logo img {
    width: 100%;
  }
}
