/*====================== Google fonts ========================*/
@font-face {
  font-family: "BODONI";
  src: url("../font/BODONI/Bodoni 72.ttc") format("truetype");
  font-weight: 600;
  font-style: normal; 
}
@font-face {
  font-family: "BODONI";
  src: url("../font/BODONI/Bodoni 72 OS.ttc") format("truetype");
  font-weight: normal;
  font-style: normal; 
}
@font-face {
  font-family: "BODONI";
  src: url("../font/BODONI/Bodoni 72 Smallcaps Book.ttf") format("truetype");
  font-weight: 400;
}

/* Operetta Font */
@font-face {
  font-family: "OPERETTA";
  src: url("../font/OPERETTA/Fontspring-DEMO-operetta12-medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "OPERETTA 12";
  src: url("../font/OPERETTA/Fontspring-DEMO-operetta12-medium.otf") format("opentype");
  font-weight: 500;
}

/* VISBY-CF Thin  */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Thin.otf') format('opentype');
  font-weight: 100;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Thin-Oblique.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
}
/* VISBY-CF light  */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Light-Oblique.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
/* VISBY-CF regular  */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Regular-Oblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
/* VISBY-CF medium */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Medium-Oblique.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
/* VISBY-CF demi bold  */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Demi-Bold.otf') format('opentype');
  font-weight: 600;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Demi-Bold-Oblique.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
}
/* VISBY-CF bold  */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Bold-Oblique.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
/* VISBY-CF extra bold */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Extra-Bold.otf') format('opentype');
  font-weight: 800;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Extra-Bold-Oblique.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}
/* VISBY-CF heavy bold */
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Heavy.otf') format('opentype');
  font-weight: 900;
}
@font-face {
  font-family: 'VISBY-CF';
  src: url('../font/VISBY-CF/Visby-CF-Heavy-Oblique.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}
/*====================== Basic css ========================*/
html {
  font-size: 62.5%;
}

:root {
  scroll-behavior: unset;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

/* body */
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: "VISBY-CF";
  background-color: #fff;
  color: #333b55;
}

.cbtn {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
}

.sec_title {
  font-family: "Bodoni 72";
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0;
}

.sec_sub_title {
  font-family: "VISBY-CF";
  font-size: 2.4rem;
  font-weight: 400;
}

/*====================== Header area start ========================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1024;
  width: 100%;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  background-color: transparent;
}

/*sticky*/
header.sticky {
  background: rgba(27, 59, 111, 0.881);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, 0.1);
}

.logo-img {
  width: 7.8rem;
  height: 9.2rem;
  object-fit: contain;
}

/* menu */
#menu {
  text-align: right;
  margin-right: 10.6vw;
  margin-bottom: 0;
}

#menu li {
  display: inline-block;
  color: #fff;
  padding-left: 2.2rem;
  padding-right: 2.3rem;
  /* margin-right: 4.5rem;*/
}

#menu li:last-child {
  padding-right: 0;
}
#menu li:first-child {
  padding-left: 0;
}

#menu li ul li:first-child {
  padding-left: 1.4rem;
}
#menu li ul li {
  padding-left: 1.4rem;
}

#menu li a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  font-size: 1.3rem;
  font-family: "VISBY-CF";
  font-weight: bold;
  text-shadow: 0px 1px 2px #00000042;
}

#menu li {
  position: relative;
}
#menu li .dropdown-prant {
  position: relative;
  padding-right: 1rem;
}
#menu li .dropdown-prant::after {
  content: url("../img/menu-arrow.svg");
  position: absolute;
  top: 50%;
  width: 0.9rem;
  height: 1rem;
  transform: translate(2px, -50%);
}
#menu li .dropdown {
  position: absolute;
  padding: 1rem;
  padding-top: 2rem;
  padding-right: 4rem;
  right: 0;
  left: 0;
  background-image: url("../img/menu-dropdown.png");
  background-position-x: right;
  background-size: cover;
  opacity: 0.9;
  background-repeat: no-repeat;
  display: none;
}
#menu li .dropdown li {
  display: block;
  margin-bottom: 0.5rem;
  text-align: left;
}
#menu li:hover ul {
  display: block;
}

/*Hamburger menu*/
.hamburger-menu {
  cursor: pointer;
  position: relative;
  display: none;
  z-index: 999;
}

.hamburger-menu span {
  background: #ffffff;
  width: 3rem;
  height: 0.3rem;
  display: block;
  margin: 0.5rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger-menu span.current {
  background: #1c4175;
}

.hamburger-menu:hover .line-top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.hamburger-menu .line-top.current {
  -webkit-transform: translateY(200%) rotate(135deg);
  -ms-transform: translateY(200%) rotate(135deg);
  transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
  opacity: 0;
}

.hamburger-menu .line-bottom.current {
  -webkit-transform: translateY(-325%) rotate(-135deg);
  -ms-transform: translateY(-325%) rotate(-135deg);
  transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  top: 0;
  display: none;
  left: -100%;
  transition: 0.3s;
}

.ofcavas-menu.current {
  left: 0;
}

.ofcavas-menu ul {
  margin-top: 13rem;
}

.ofcavas-menu li {
  text-align: start;
  padding: 1.4rem 0;
}

.ofcavas-menu a,
.ofcavas-menu .dropdown-prant {
  color: #1b3d74;
  font-family: "VISBY-CF";
  font-size: 1.6rem;
}

.ofcavas-menu button,
.ofcavas-menu .accordion-button:not(.collapsed) {
  padding: 0;
  background: #fff !important;
  border-bottom: none !important;
  outline: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.ofcavas-menu button:focus,
.ofcavas-menu .accordion-button:not(.collapsed):focus {
  outline: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
.ofcavas-menu button::-webkit-focus-out,
.ofcavas-menu .accordion-button:not(.collapsed)::-webkit-focus-out {
  border: none !important;
}

.ofcavas-menu .accordion-body {
  padding: 0;
}

.ofcavas-menu .dropdown {
  margin-top: 0;
}

/*========== Page loader CSS ==========*/
#preloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader3 {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.loader3 span {
  position: absolute;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: #2652d5;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.hero_area_wrap .hero_inner {
  max-width: 42.7rem;
  padding: 3rem 6rem;
}
.hero_area_wrap .hero_inner .hero_title {
  font-family: "Bodoni 72";
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
}
.hero_area_wrap .hero_inner .hero_subtitle {
  font-family: "VISBY-CF";
  font-weight: 400;
  color: #ffe800;
  font-size: 2.4rem;
}
.hero_area_wrap .hero_inner .hero_dibider {
  border-color: #ffe800;
  opacity: 1;
  width: 6rem;
  margin: 2rem 0;
  margin-left: -2rem;
}
.hero_area_wrap .hero_inner .hero_con {
  word-break: break-word;
  width: 17rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2.5rem;
}

.hero_area {
  background-size: cover;
  background-repeat: no-repeat;
}
.hero_area .hero_inner {
  max-width: 42.7rem;
  padding: 3rem 6rem;
  background: rgba(10, 45, 111, 0.741);
  backdrop-filter: blur(2px) brightness(0.5);
}
.hero_area .hero_inner .hero_title {
  font-family: "Bodoni 72";
  font-size: 3rem;
  /* font-family: "VISBY-CF";
  font-size: 2.6rem; */
  font-weight: 700;
  color: #fff;
}
.hero_area .hero_inner .hero_subtitle {
  font-family: "VISBY-CF";
  font-weight: 400;
  color: #ffe800;
  font-size: 2.4rem;
}
.hero_area .hero_inner .hero_dibider {
  border-color: #ffe800;
  opacity: 1;
  width: 6rem;
  margin: 2rem 0;
  margin-left: -2rem;
}
.hero_area .hero_inner .hero_con {
  word-break: break-word;
  width: 17rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2.5rem;
}
.hero_area .hero_inner .bot_con_area .pd-cont {
  padding: 0 !important;
  padding-left: 1rem !important;
}
.hero_area .hero_inner .bot_con_area p {
  margin-left: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #fff;
}

.contact_area {
  background-image: url("../img/home-contact-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_area .contact_inner {
  max-width: 55rem;
  margin-left: 13rem;
  padding: 10.7rem 8rem;
  padding-bottom: 8rem;
  background-color: #1b3b6ff0;
  color: #fff;
}
.contact_area .contact_inner .sec_devider {
  width: 9rem;
  border-color: #ffe800;
  opacity: 1;
  margin-left: -2.5rem;
  margin-bottom: 2rem;
}
form.contact-form input,
form.contact-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #fff;
  padding-top: 1rem;
}
form.contact-form input::placeholder,
form.contact-form textarea::placeholder {
  color: #b4b4b4;
}
form.contact-form input[type="checkbox"],
form.contact-form input[type="radio"] {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin-bottom: 0rem;
  background-color: transparent;
  border: 1px solid #ffe800;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
}
form.contact-form input[type="checkbox"]:checked,
form.contact-form input[type="radio"]:checked {
  background-color: #ffe800 !important;
}
form.contact-form label {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #fff;
}
form.contact-form input[type="submit"] {
  margin-top: 2rem;
  width: unset;
  color: #1b3b6f;
  background: #fff;
  border: 1px solid;
  border-color: #fff;
  padding: 1rem 3rem;
  font-size: 1.3rem;
  line-height: 1.3;
}
form.contact-form input[type="submit"]:hover {
  background: transparent;
  color: #fff;
}

form.contact-form .contact-form-loader{
  display: none;
}

.learn_area {
  background-image: url("../img/learn-area-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem;
}
.learn_area .learn_inner {
  max-width: 67rem;
  margin: 0 auto;
}
.learn_area .learn_inner .title_prev {
  font-family: "Bodoni 72";
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
}
.learn_area .learn_inner .title_prev span {
  color: #ffe800;
  margin-right: 2rem;
}
.learn_area .learn_inner .title_main {
  display: inline-block;
  padding: 1rem 2rem;
  background: #fff;
  font-family: "VISBY-CF";
  font-size: 1.2rem;
  font-weight: 400;
  color: #1b3b6f;
}
.learn_area .full_width {
  max-width: 100%;
}

/*-- Footer area --*/
footer {
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
}

footer .foot_logo {
  width: 12rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

footer .foot_con {
  word-break: break-word;
  max-width: 37rem;
  font-family: "VISBY-CF";
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.38;
  margin-bottom: 3rem;
}

footer .foot_link {
  padding: 0;
  margin: 0;
}

footer .foot_link li {
  font-family: "VISBY-CF";
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.38;
  color: #000000;
  margin-bottom: 0.9rem;
}

footer .foot_link li a {
  color: #000000;
}

footer .foot_link li img {
  margin-right: 0.4rem;
}

footer .copyright_con {
  margin-top: 3.5rem;
  font-size: 1.1rem;
  font-family: "VISBY-CF";
}

footer .foot_title {
  font-family: "Bodoni 72";
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 0;
  font-weight: 500;
  color: #1b3b6f;
}

footer .title_diveder {
  width: 2rem;
  margin-top: 0;
  margin-left: -0.8rem;
  border-color: #cfcacc;
  opacity: 1;
}

footer .foot_con2_wrap {
  max-width: 18rem;
  margin-left: auto;
}

.grecaptcha-badge{
  display: none !important;
}
