/* =========================
   CORE CSS (SAFE VERSION)
========================= */

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Inter', sans-serif;
  color:#3E4073;
  line-height:1.6;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

/* GRID */
.row{
  display:flex;
  flex-wrap:wrap;
}

/* LINKS */
a{
  text-decoration:none;
  color:inherit;
}

/* BUTTON */
.btn{
  display:inline-block;
  background:#F7A400;
  color:#fff;
  padding:12px 20px;
  border-radius:6px;
  transition:0.3s;
}
.btn:hover{
  background:#191D88;
}

/* =========================
   HEADER
========================= */

.tg-header__top{
  background:#0E104B;
  color:#fff;
  padding:8px 0;
  font-size:14px;
}

.tg-header__top a{
  color:#fff;
}

.tg-header__area{
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* MENU */
.tgmenu__nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.tgmenu__navbar-wrap ul{
  display:flex;
  gap:25px;
  list-style:none;
}

.tgmenu__navbar-wrap ul li a{
  font-weight:500;
  color:#191D88;
}

/* =========================
   MOBILE MENU
========================= */

.tgmobile__menu{
  position:fixed;
  top:0;
  right:0;
  width:280px;
  height:100%;
  background:#fff;
  z-index:9999;
  transform:translateX(100%);
  transition:0.3s;
  overflow:auto;
  padding:20px;
}

.tgmobile__menu.active{
  transform:translateX(0);
}

.tgmobile__menu ul{
  list-style:none;
}

.tgmobile__menu ul li{
  margin-bottom:10px;
}

.tgmobile__menu ul li a{
  color:#191D88;
  font-size:16px;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:#f5f5f5;
  padding:40px 0;
}

.footer a{
  color:#191D88;
}

.footer-widget{
  margin-bottom:20px;
}

.footer-widget h4{
  margin-bottom:10px;
  font-size:18px;
}

/* =========================
   IMAGE FIX
========================= */

img{
  max-width:100%;
  height:auto;
}

/* =========================
   BASIC RESPONSIVE
========================= */

@media(max-width:768px){
  .tgmenu__navbar-wrap{
    display:none;
  }
}