/* =========================================================
   RESET & BASE
========================================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Nunito, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

iframe { border: none; }

/* =========================================================
   RTL LAYOUT
========================================================= */
.container,
.entry-content,
main[class*=col-] {
  direction: rtl;
  text-align: right;
  padding: 0 20px;
}

.container {
  width: 100%;
  margin: auto;
}

@media (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}

/* =========================================================
   TITLES
========================================================= */
.titleh {
  text-align: center;
  font-size: 39px;
  margin-bottom: 10px;
}

h1 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 14px;
}

/* =========================================================
   LINE WITH ICON
========================================================= */
.line {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.icon-line {
  width: 128px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-line::before,
.icon-line::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(249, 106, 154, 0.5);
}

/* =========================================================
   BUTTONS (MAIN NAVIGATION)
========================================================= */
.content {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  display: flex;
  width: 100%;
  max-width: 520px;
  margin: auto;
  height: 53px;
  border-radius: 6px;
  overflow: hidden;
}

/* Text side */
.btn .left,
.btn .title {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: #2aaae2;
  box-shadow: 0 3px 0 #0096d8;
}

/* Icon side */
.btn .right,
.btn .icon {
  width: 64px;
  height: 53px;
  background-color: #0096d8;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 34px 34px;
  box-shadow: 0 3px 0 #007261;
}

/* Effects */
.btn:hover { filter: brightness(0.97); }
.btn:active { transform: translateY(1px); }

/* =========================================================
   HEADER & NAVIGATION
========================================================= */
.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
}

.site-header .header-inner {
  min-height: 50px;
}

.site-header .wrap-content-header {
  display: flex;
  align-items: center;
}

.header-logo {
  flex: 1;
  min-width: 150px;
  background-image: url(assets/images/logo-bg-03.png);
  background-repeat: no-repeat;
  background-position: left bottom;
}

/* Menu */
.main-navigation ul {
  list-style: none;
  display: flex;
}

.main-navigation li {
  position: relative;
}

.main-navigation > ul > li > a {
  padding: 10px;
  font-size: 17px;
  display: block;
}

/* Submenu */
.sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
}

.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu li a {
  padding: 8px 20px;
  display: block;
}

/* =========================================================
   MOBILE MENU
========================================================= */
.toggle-menu {
  width: 50px;
  height: 50px;
  position: relative;
  display: none;
}

.toggle-menu i {
  position: absolute;
  width: 30px;
  height: 2px;
  background: #0094fc;
  left: 0;
  transition: .3s;
}

.toggle-menu i:nth-child(1) { top: 16px; }
.toggle-menu i:nth-child(2) { top: 24px; }
.toggle-menu i:nth-child(3) { top: 32px; }

.toggle-menu.active i:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

.toggle-menu.active i:nth-child(2) {
  opacity: 0;
}

.toggle-menu.active i:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #fff;
  padding: 40px;
  transition: .3s;
}

.menu-drawer.open {
  right: 0;
}

.menu-drawer li {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
  .main-navigation { display: none; }
  .toggle-menu { display: block; }
}

@media (max-width: 390px) {
  .btn .left,
  .btn .title {
    font-size: 18px;
  }
}

/* =========================================================
   FONT AWESOME
========================================================= */
@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2');
  font-weight: normal;
  font-style: normal;
}

.fa {
  font-family: FontAwesome;
  display: inline-block;
}
.fa-home:before { content: "\f015"; }
.fa-book:before { content: "\f02d"; }
.fa-users:before { content: "\f0c0"; }
.fa-facebook-square:before { content: "\f082"; }
.fa-twitter:before { content: "\f099"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-telegram:before { content: "\f2c6"; }

/* =========================================================
   END
========================================================= */
