@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');


:root {
  --theme-color: #000000;
  --theme-color-second:#041d56;
  --theme-color-third: #0f2473;

  --heading-font:  "Archivo", sans-serif;
  --paragraph-font: "Archivo", sans-serif;
  --span-font: 'spanist';

--shadow-small: 0 2px 6px rgba(0, 0, 0, 0.15);
  --shadow-base: 0 6px 16px rgba(0, 0, 0, 0.2);
  --shadow-large: 0 14px 30px rgba(0, 0, 0, 0.25);

  --gap: 2.5rem;
  --size: 120px;
  --duration: 25s;
  --scroll-start: 0%;
  --scroll-end: -100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;

}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none;
  font-size: 17px;
  color: #000413;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  font-family: "Archivo", sans-serif;
  /* color: var(--theme-color) !important; */
}

.mobile-header{
  display: none;
}

.header-info {
    display: flex;
    flex-direction: row;
    gap: 11px;
    flex-wrap: wrap;
}
a {
  color: #0055f1;
  text-decoration: none;
  transition: all 0.5s;

}

a:hover {
  text-decoration: none;
  transition: all .6s;
  text-decoration: none;
}



* {
  box-sizing: border-box;
}
.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
}

.m-backtotop > div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop > div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 196px;
}

.header_menu li a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  padding: 29px 19px;
  display: inline-block;
}

.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 12px 6px;
  border-radius: 5px;
  width: 14rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

a.comon-btn:hover {
  background: var(--theme-color-second);
  color: #fff;
}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}
.desktop-logo img {
    width: 196px;
}

.desktop-header-menu li a {
    color: #000000;
    font-size: 16px;
    text-transform: capitalize;
    padding: 29px 19px;
    display: inline-block;
    font-weight: 500;
}

.desktop-header-menu li a:hover {
    color: var(--theme-color-second);
}

.navbar li:hover a {
    color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar li .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar li:hover .dropdown-menu {
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }
}

ul.submenu-2 li a:hover {
    color: #fff !important;
    background: var(--theme-color-second);
}

#desktop-header ul.submenu-2 li:last-child {
    border-bottom: 0px;
}

#desktop-header ul.submenu-2 li {
    border-bottom: 1px solid #c1c0bd;
    margin: 0;
}

ul.submenu-2 li a {
    color: #000 !important;
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 11px 12px;
}

ul.submenu-2 {
    border: none;
    background: #fff;
    padding: 0;
    min-width: inherit;
    width: 200px;
    border-radius: 0;
}

.has-submenu-2 i {
    top: -9px !important;
}

.has-submenu-2 {
    position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999999999999;
}

.footer {
  color: #fff;
}

.footer .list-item{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: 15px 20px;
  margin-bottom: 28px;
}
.footer  li a{
  color: #c1c0bd;
}

.footer .social{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 28px;
}

.enquries .map{
  line-height: 0;
}

.enquries .map iframe{
  width: 100%;
  height: 225px;
}

.privacy h1{
  font-size: 50px;
}

.privacy h2{
  font-size: 40px;
}
.privacy h3{
  font-size: 30px;
}

.privacy h4 {
  font-size: 25px;
}
.privacy h5{
  font-size: 20px;
}
.privacy  p{
  font-size: 20px;
}

.privacy  ul {
  padding-left: 20px;
  list-style: disc;
}

.privacy  ul li{
  margin-bottom: 10px;
}
.nav-tabs {
  border: none!important;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: lightgrey;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #000;
    width: 201px;
    border-radius: 0!important;
}

.nav-tabs .nav-link.active{
  background-color: #041d56;
  color: #fff!important;
}



/* ------------------ */
.account-container {
  position: relative;
  width: 100%;
  background-color: #fff;
  min-height: 100vh;
  overflow: hidden;
}

.forms-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.signin-signup {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75%;
  width: 50%;
  transition: 1s 0.7s ease-in-out;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 5;
}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0rem 5rem;
  transition: all 0.2s 0.7s;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

form.sign-up-form {
  opacity: 0;
  z-index: 1;
}

form.sign-in-form {
  z-index: 2;
}

.title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}

.input-field {
  max-width: 380px;
  width: 100%;
  background-color: #f0f0f0;
  margin: 10px 0;
  height: 55px;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
  position: relative;
}

.input-field i {
  text-align: center;
  line-height: 55px;
  color: #acacac;
  transition: 0.5s;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}

.social-text {
  padding: 0.7rem 0;
  font-size: 1rem;
}

.social-media {
  display: flex;
  justify-content: center;
}

.social-icon {
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.45rem;
  color: #333;
  border-radius: 50%;
  border: 1px solid #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: #041d56;
  border-color: #041d56;
}

.btn {
  width: 150px;
  background-color: #041d56;
  border: none;
  outline: none;
  height: 49px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn:hover {
  background-color: #133176ed;
}
.panels-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.account-container:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 48%;
  transform: translateY(-50%);
  background-image: linear-gradient(-45deg, #041d56 0%, #133176ed 100%);
  transition: 1.8s ease-in-out;
  border-radius: 50%;
  z-index: 6;
}

.image {
  width: 100%;
  transition: transform 1.1s ease-in-out;
  transition-delay: 0.4s;
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  text-align: center;
  z-index: 6;
}

.left-panel {
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.right-panel {
  pointer-events: none;
  padding: 3rem 12% 2rem 17%;
}

.panel .content {
  color: #fff;
  transition: transform 0.9s ease-in-out;
  transition-delay: 0.6s;
}

.panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 1.5rem;
}

.panel p {
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.btn.transparent {
  margin: 0;
  background: none;
  border: 2px solid #fff;
  width: 130px;
  height: 41px;
  font-weight: 600;
  font-size: 0.8rem;
}

.right-panel .image,
.right-panel .content {
  transform: translateX(800px);
}

/* ANIMATION */

.account-container.sign-up-mode:before {
  transform: translate(100%, -50%);
  right: 52%;
}

.account-container.sign-up-mode .left-panel .image,
.account-container.sign-up-mode .left-panel .content {
  transform: translateX(-800px);
}

.account-container.sign-up-mode .signin-signup {
  left: 25%;
}

.account-container.sign-up-mode form.sign-up-form {
  opacity: 1;
  z-index: 2;
}

.account-container.sign-up-mode form.sign-in-form {
  opacity: 0;
  z-index: 1;
}

.account-container.sign-up-mode .right-panel .image,
.account-container.sign-up-mode .right-panel .content {
  transform: translateX(0%);
}

.account-container.sign-up-mode .left-panel {
  pointer-events: none;
}

.account-container.sign-up-mode .right-panel {
  pointer-events: all;
}

@media (max-width: 870px) {
  .account-container {
    min-height: 800px;
    height: 100vh;
  }
  .signin-signup {
    width: 100%;
    top: 95%;
    transform: translate(-50%, -100%);
    transition: 1s 0.8s ease-in-out;
  }

  .signin-signup,
  .account-container.sign-up-mode .signin-signup {
    left: 50%;
  }

  .panels-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr 1fr;
  }

  .panel {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 8%;
    grid-column: 1 / 2;
  }

  .right-panel {
    grid-row: 3 / 4;
  }

  .left-panel {
    grid-row: 1 / 2;
  }

  .image {
    width: 200px;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.6s;
  }

  .panel .content {
    padding-right: 15%;
    transition: transform 0.9s ease-in-out;
    transition-delay: 0.8s;
  }

  .panel h3 {
    font-size: 1.2rem;
  }

  .panel p {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .btn.transparent {
    width: 110px;
    height: 35px;
    font-size: 0.7rem;
  }

  .account-container:before {
    width: 1500px;
    height: 1500px;
    transform: translateX(-50%);
    left: 30%;
    bottom: 68%;
    right: initial;
    top: initial;
    transition: 2s ease-in-out;
  }

  .account-container.sign-up-mode:before {
    transform: translate(-50%, 100%);
    bottom: 32%;
    right: initial;
  }

  .account-container.sign-up-mode .left-panel .image,
  .account-container.sign-up-mode .left-panel .content {
    transform: translateY(-300px);
  }

  .account-container.sign-up-mode .right-panel .image,
  .account-container.sign-up-mode .right-panel .content {
    transform: translateY(0px);
  }

  .right-panel .image,
  .right-panel .content {
    transform: translateY(300px);
  }

  .account-container.sign-up-mode .signin-signup {
    top: 5%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 570px) {
  form {
    padding: 0 1.5rem;
  }

  .image {
    display: none;
  }
  .panel .content {
    padding: 0.5rem 1rem;
  }
  .account-container {
    padding: 1.5rem;
  }

  .account-container:before {
    bottom: 72%;
    left: 50%;
  }

  .account-container.sign-up-mode:before {
    bottom: 28%;
    left: 50%;
  }
}

/* cd new */
.notify-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: none;
    min-width: 320px;
}

.notify-icon {
    font-size: 22px;
    margin-top: 2px;
}

.notify-content {
    flex: 1;
    font-size: 14px;
}

.notify-content strong {
    font-size: 15px;
}

.notify-box .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 0.6;
}

.notify-box .btn-close:hover {
    opacity: 1;
}