@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');

:root{
  --primary: #29304b;
  --dark: #21252f;
  --body:#888;
  --box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

body{
  font-family: 'Sora', sans-serif;
  line-height: 1.7;
  color: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6,
display-4{
  color: var(--dark);
  font-weight: 700;
}
.bg-dark{
  background-color: var(--primary) !important;
}
a{
  color: var(--dark);
  text-decoration: none;
}

section{
  padding-top: 80px;
  margin-bottom: 80px;
}

.navbar .nav-link{
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
}

.hero{
  background-image: url(../img/header_03.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  position: relative;
  z-index: 2;
} */

.hero::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: rgba(37, 39, 71, 0.3);
  z-index: -1;
}

.card-effect{
  box-shadow: var(--box-shadow);
  background-color: #fff;
  padding: 25px;
  transition: all 0.5s ease;
}

.card-effect:hover{
  box-shadow: none;
  transform: translateY(5px);
}

.iconbox{
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  border-radius: 100px;
  background-color: var(--primary);
  flex: none;
}

.service {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service::after{
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: -1;
}
.service:hover h5,
.service:hover p{
  color: #fff;
}

.service:hover .iconbox{
  background-color: #fff;
  color: var(--primary);
}

.service:hover::after{
  opacity: 1;
  top: 0;
}

.col-img{
  background-image: url(../img/item_15.jpg);
  background-position: center;
  background-size: cover;
  min-height: 400px;
}

/* menu */

.menu01{
  position: relative;
  overflow: hidden;
  }

.menu01 .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 39, 71, 0.3);
  padding: 30px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.4s ease;
}

img{
  width: 100%;
}

.menu01 img{
  transition: all 0.4s ease;
}

.menu01:hover .overlay{
  opacity: 1;
}
.menu01:hover img{
  transform: scale(1.1);
}

/* team */

.team-member{
  height: 100%;
}
.team-member img{
  width: 125px;
  height: 125px;
  border-radius: 100px;
}

.team-member p{
  font-size: 14px;
}

.social-icons{
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a{
  width: 34px;
  height: 34px;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin-left: 5px;
  transition: all 0.4s ease;
}

.social-icons a:hover{
  color: var(--primary);
  background-color: transparent;
}


#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3fefee;
  opacity: 0.6;
  z-index: 1;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
