@import url("https://fonts.googleapis.com/css2?family=Harmattan:wght@400;700&family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --harmattan: "Harmattan", sans-serif;
  --inter: "Inter", sans-serif;
  --poppins: "Poppins", sans-serif;
  --quicksand: "Quicksand", sans-serif;
  --primary-color: #45ccb8;
  --border: #2b303218;
  --text-color: #ff686b;
  --light-gray: #2b3032a1;
  --white: #ffffff;
  --red: #ee2a7b;
  --black: #1e293b;
  --red-dark: #be1e2d;
  --yellow: yellow;
  --bg-gray: #f8fafc;
  --bg-gray-light: #eef2ff;
}
html {
  font-family: var(--inter);
  scroll-behavior: smooth;
}
/* --------HEADER-------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section {
  padding: 6rem 0;
}
.section-hero {
  background: url(../img/pt2.jpg) no-repeat center center fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-color: var(--black);
  background-blend-mode: overlay;
  color: var(--bg-gray-light);
}
.section-title {
  font-size: 4rem;
  font-weight: 600;
}
.section-description {
  width: 50vw;
  padding: 0 2rem;
  font-family: var(--quicksand);
}
@media only screen and (max-width: 650px) {
  .section-description {
    width: 100vw;
  }
  .section-title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 650px) {
  .section {
    padding: 2rem 0;
  }
}
/* ---------HERO SECTION END-------- */
/* ---------SERVICE SECTION----- */
.section-services {
  background-color: var(--bg-gray-light);
}
.service-card img {
  width: 100%;
}
.service-card {
  padding: 1rem 1rem;
}
.service-card h4 {
  font-family: var(--poppins);
  font-size: 2rem;
  font-weight: bolder;
}
.service-card-desc {
  line-height: 28px;
}
.link-btn {
  padding: 15px 30px;
  background-color: var(--black);
  color: var(--white);
}
.link-btn:hover {
  text-decoration: none;
  background-color: var(--light-gray);
  color: var(--white);
}
/* ---------SERVICE SECTION END----- */

/* ---------CONTACT SECTION------ */
.section-contacts {
  background-color: var(--black);
  font-family: var(--poppins);
}
.icon-text-container {
  display: flex;
  align-items: center;
}
.icon-title {
  margin-top: -18px;
  font-size: 1.3rem;
}
.icon i {
  font-size: 25px;
  margin-right: 13px;
}
.icon-subtitle {
  color: var(--red);
}
*/

/* ---------CONTACT SECTION END */
/* ----------LOGIN SECTION----------- */
.section-heading {
  font-family: var(--poppins);
  font-size: 2rem;
  text-align: center;
}
.form-group .form-control {
  border-radius: none;
  padding: 25px 25px;
  color: black !important;
  background-color: transparent !important;
}
.form-group .form-control.form-select {
  border-radius: none;
  padding: 0 20px;
  color: var(--black) !important;
  background-color: transparent !important;
}

form {
  font-family: var(--poppins);
}
.error {
  color: red !important;
}
.action-link i {
  color: var(--red) !important;
  font-size: 2rem;
}
.btn {
  padding: 13px 40px;
  background-color: var(--black);
  color: var(--white);
}
.btn:hover {
  background-color: var(--black);
  color: var(--white);
}
/* .section {
  height: 100vh;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
} */
.row1 {
  background-color: #549fdb;
  border-radius: 1.4rem;
  /* width: 90%; */
  display: flex;
  justify-content: center;
}
.form-control {
  border: 0.1rem solid rgb(66, 66, 66);
}
.section-login {
  height: 100vh;
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--bg-gray-light);
}

/* ----------LOGIN SECTION END--------- */
/*------------ USER DASHBOARD------------- */
.section-dashboard {
  font-family: var(--poppins);
}
/* sidebar */
.sidebar {
  background-color: var(--black);
  min-height: 100vh;
  color: var(--white);
}
.sidebar-logo {
  font-size: 2rem;
  color: var(--white) !important;
  font-weight: 800;
}
.profile {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}
.profile-initials {
  height: 40px;
  width: 40px;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
}
.profile-name {
  font-size: 1.3rem;
}
.sidebar-link {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.sidebar-link i {
  margin-right: 3px;
  font-size: 1.3rem;
}
.sidebar-link:hover,
.sidebar-link:active {
  color: var(--red);
  text-decoration: none;
}
/* Main content */
.dashboard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white);
  font-size: 1.4rem;
}
.dashboard-title,
.username {
  font-weight: bolder;
}
.main-content {
  background-color: var(--bg-gray-light);
}
.sec-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--red);
}
.thumbnail {
  width: 30px;
}
button {
  border: none;
  outline: none;
}
.action-btn i {
  font-size: 1.7rem;
}
.action-btn i {
  color: var(--red);
}
.profile-img img {
  width: 100%;
  border-radius: 100%;
}
.modal-title {
  color: var(--red);
}

/*------------ USER DASHBOARD END------------- */
