
:root {
  --primary-font    : 'Poppins', sans-serif;
  --secondary-font  : 'Inter', sans-serif;
  --en-primary-font : 'Poppins', sans-serif;
  --ar-font         : 'Cairo', sans-serif;
}



/* ----------------------------------- */

/* :: THEME COLORS :: */
:root {
  --primary   : #4E4FEB;
  --darkBlue  : #0E2954;
  --lightBlue : #2d5087;
  /* --darkGray  : #9a9aa0; */
  --darkGray  : #363636;
  --mint  : #27E1C1;
  --tomato: #FF4A4A;
  --border: #e3e9ed;
  --light : #f6f9fd;
  --primary-shadow: rgba(78, 78, 235, 0.1);
}
.pri-color {
  color: var(--primary) !important;
}
.bg-2 {
  /* background-color: #f7f7fe; */
  background-color: var(--light) !important;
}
.img-color {
  --primary   : #4E4FEB;
  --lPrimary  : #4040e2;
  --lines     : #0E2954;
  --shadow    : #e3e9ed;
}


/* :: CUSTOM CONTAINERS :: */
.proserv-container {
  max-width: 1599px;
  width: 100%;
  padding: 0 8vw;
  margin-right: auto;
  margin-left: auto;
}
.proserv-container-fluid {
  max-width: 1699px;
  width: 100%;
  padding: 0 4vw;
  margin: 0 auto;
}
@media only screen and (max-width: 991.98px) {
  .proserv-container {
    padding: 0 4vw;
  }
}


.container-fluid {
    max-width: 1699px;
    width: 100%;
    padding: 0 4vw;
    margin: 0 auto;
}
/* :: BUTTONS :: */

/* default-btn */
.theme-btn {
  color: #fff;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  min-height: 42px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 4px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  transition: all .15s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.theme-btn:hover {
  border-color: #2324b9;
  background-color: #2324b9;
}
.theme-btn:focus {
  outline: 4px solid rgba(78, 78, 235, 0.1) !important;
}






/* social-btn */
.--social-btn > img {
  width: 18px;
}

/* shadow-off */
.--shadow-off {
  box-shadow: unset !important;
}

/* sm-btn */
.--btn-size-sm {
  padding: 0 16px;
  font-size: 12px;
  min-height: 34px;
}

/* circle-btn */
.--circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
}

/* has-icon */
.--has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.--has-icon > img {
  width: 18px;
}

/* has-counter */
.--has-counter {
  position: relative;
}
.--has-counter::before {
  position: absolute;
  content: attr(data-count);
  top: -4px;
  right: -4px;
  font-family: var(--secondary-font);
  background-color: var(--tomato);
  min-width: 20px;
  height: 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  padding: 4px;
}

/* th-link */
.th-link {
  color: var(--primary);
}
.th-link:hover {
  text-decoration: underline !important;
}
.th-link.--small {
  font-size: 12px;
}
.th-link.--th-link-gray {
  color: var(--lightBlue);
}


/* :: SECTION-TITLE */
.se-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 65px;
}
.se-title.side-title {
  text-align: left;
  margin-bottom: 0;
}
.se-title .sub-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.se-title .para {
  font-size: 16px;
  font-weight: 500;
  color: var(--lightBlue);
  margin-top: 20px;
}
.se-title .title {
  font-size: 36px;
  color: var(--darkBlue);
}
@media only screen and (max-width: 1599.98px) {
  .se-title .sub-title {
    font-size: 18px;
  }
  .se-title .title {
    font-size: 32px;

  }
}
@media only screen and (max-width: 1199.98px) {
  .se-title {
    max-width: 80%;
  }
  .se-title.side-title {
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .se-title .title {
    font-size: 28px;

  }
}
/* ----------------------------------- */
.py-90 {
    padding: 90px 0;
    background-color: #6c757d0a; /* ღია სერი */
}