@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  font-family: "inter";
  color: #444444;
}

a {
  text-decoration: none;
  color: #ffb03b;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "inter";
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #284F85;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.mails h6 {
  color: #284F85;
  font-size: 15px;
  font-weight: 700;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #fff !important;
  line-height: 0;
  font-size: 13px;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
  font-size: 13px;
}

#header {
  top: 50px;
  height: 100px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: #0c1c33;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}


.book-a-table-btn {
  background: #284F85;
  color: #fff;
  border-radius: 3px;
  margin: 0 0 0 20px;
  padding: 11px 25px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.book-a-table-btn:hover {
  background: #ffa012;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}


.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 34px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.text-warning {
  color: #ffb03b !important;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffb03b;
}

.Careers {
  background-color: aliceblue;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #284F85;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #284F85;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #284F85;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(12, 11, 10, 0.5); */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 65px;
  font-weight: 900;
  line-height: 86px;
}

#hero h2 span {
  color: #284F85;
  font-size: 43px;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

p {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 300;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

.about h2 {
  font-family: 'Inter';
  font-size: 42px;
  color: #04213F;
  font-weight: 800;
}

.about h4 {
  color: #04213F;
  font-size: 18px;
  font-weight: 600 !important;
}

.Quality img {
  width: 70px;
}

.about h6 {
  color: #284F85;
  font-size: 14px;
  font-weight: 700;
}

.about p {
  color: #3E4B57;
  opacity: 100%;
  font-weight: 400;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 12px;
  border-radius: 3px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #284F85;
  background: #284F85;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #ffb03b;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}


section {
  padding: 60px 0;
}

.services h4 {
  color: #04213F;
  font-size: 20px;
}

.about {
  padding: 0px !important;
}

.services .Quality p {
  font-size: 15px;
  color: #3E4B57;
  font-weight: 400;
  line-height: 19px;
}

.topbars {
  width: 89% !important;
}

.about .content {
  padding: 0 28px;
}

.services p {
  font-size: 15px;
  color: #3E4B57;
  font-weight: 500;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

h2 {
  font-size: 42px;
  color: #04213F;
  font-weight: 800;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) #dee2e6b0 !important;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
    line-height: 52px;
  }

  .p-5 {
    padding: 12px 0rem !important;
  }
}

.work-process .card {
  border: none;
  padding: 0 0 0;
  background: transparent;
}

h6 {
  color: #284F85;
  font-size: 18px;
  font-weight: 700;
}

.work-process .card-title {
  margin-bottom: 16px;
  color: #04213F;
  font-weight: 700;
  font-size: 19px;
}

.work-process .card-text {
  color: #3E4B57;
  font-weight: 400;
}

.top-bars {
  max-width: 1223px;
}

.work-process .card-body {
  flex: 1 1 auto;
  padding: 0;
  color: var(--bs-card-color);
}

.work-process .btn-primary {
  text-align: center;
  border-radius: 50px;
  height: 70px;
  width: 70px;
  line-height: 64px;
  position: relative;
  left: 37%;
  top: -23px;
  box-shadow: 0 3px 6px #00000014;
  background: #fff;
  border-color: #fff;
  color: #04213F;
  font-weight: 700;
  font-size: 25px;
}

.work-process {
  background-color: #FDF6F8;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ffb03b;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #ffb03b;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events img {
  border: 1px solid #0000003d !important;
  height: 65%;
  padding: 12px;
}



.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ffb03b;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb03b;
}

.events .carousel-indicators {
  position: absolute;
  right: 0;
  /* bottom: -56px; */
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}

.events .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #B9BFC1;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transition: opacity .6s ease;
}

.carousel-indicators .active {
  background-color: #284F85 !important;
}

.event {
  background: url(../images/aaa.png);
  background-position: center center;
  background-size: cover;
  position: relative;
  padding: 0;
}

.events h3 {
  font-size: 34px;
  color: #04213F;
  font-weight: 900;
}

.event h2 {
  color: #fff;
  line-height: 56px;
}

.btn-outline-secondary {
  background: transparent;
  border-color: #FFF;
  COLOR: #fff;
  padding: 14px 26px;
  border-radius: 3px;
  /* border: 2px solid; */
  font-weight: 600;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  text-decoration: none;
  opacity: 80%;
}

.footer .form-control {
  display: block;
  width: 100%;
  padding: 12px 0.75rem;
  font-size: 14px;
  font-weight: 400;
  font-weight: 500;
  line-height: 1.5;
  color:#fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #fff !important;
  border-radius: 2px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.footer h4 {
  font-size: 20px;
  font-weight: 800;
}

.bg-dark {
  background-color: #0A1930 !important;
}

.btn-danger {
  background-color: #284F85;
  border-color: #284F85;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px !important;
  border-radius: 2px;
}

.footer ::placeholder {
  color: #FFFFFF;
  opacity: 49;
  /* Firefox */
}

.footer ::-ms-input-placeholder {
  /* Edge 12-18 */
  color: red;
}

a {
  text-decoration: none;
}

.cta {
  padding: 35px 0 33px;
  background-color: #284F85;
  width: 74%;
  left: 13%;
  position: relative;
  top: 27px;
  z-index: 999;
  border-radius: 5px;
}

.cta h4 {
  color: #fff;
  font-size: 22px;
}

.alrt {
  padding: 0;
}

.Quality p {
  font-size: 16px;
  color: #3E4B57;
  font-weight: 500;
  line-height: 19px;
}

.contact {
  padding: 0;
}

.contact .form-control {
  display: block;
  width: 100%;
  padding: 12px 0.75rem;
  font-size: 14px;
  font-weight: 400;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #F3F4F8;
  background-clip: padding-box;
  border: #F3F4F8;
  border-radius: 2px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.contact h4 {
  color: #284F85;
  font-size: 30px;
  font-family: "Brush Script MT", cursive;

  font-weight: 700;
}

.display-3 {
  font-size: 42px !important;
  font-weight: 800;
  line-height: 1.2;
}

.footer {
  background-image: url(../images/map.png);
  background-size: cover;
  background-color: #0C1C33;
}

.hero-header {
  background-image: url(../images/contact.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mails h3 {
  color: #04213F;
  font-size: 28px;
  font-weight: 800;
}

.mails {
  width: 26%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 17px 25px 16px;
  background: #fff;
  position: absolute;
  top: 10%;
}

.mails p {


  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0px;
  font-weight: 300;
}


.mails button[type=submit] {
  background: #284F85;
  border: 0;
  padding: 13px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 3px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 0.75rem;
  font-size: 14px;
  font-weight: 400;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 2px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-dark {
  padding: 12px 27px;
  background: #0C1C33;
  border-radius: 2px;
}

#webcoderskull-area {
  text-align: center;
}

.webcoderskull-item img {
  width: 80px;
}

#webcoderskull-law-area h2 {
  font-weight: 400;
}

.webcoderskull-item {
  border: 1px solid #7070706e;
  margin-bottom: 15px;
  padding: 25px;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  /* box-shadow: 0 1px 3px rgba(114,120,220,0.12), 0 1px 2px rgba(114,120,220,0.24); */
  width: 100%;
}

.webcoderskull-item h3 a {
  font-size: 18px;
  color: #04213F;
  font-weight: 800;
}

.stack {
  background-color: #F2F5FB;
}

.webcoderskull-item p {
  font-weight: 500;
}

.Careers h4 {
  font-size: 29px;
  color: #04213F;
  font-weight: 700;
}

.careers p {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
}

.careers {
  padding: 40px;
  border: 1px solid #70707063;
}

#topbar span {
  color: #ffffff91;
}

.about .Quality p {
  opacity: 100;
  font-size: 14px;
  color: #3E4B57;
  font-weight: 400;
  line-height: 19px;
}

.carose-content::after {
  width: 150px;
  height: 150px;
  background-color: rgb(153, 33, 117);
  transform: skew(20deg);

}

.ctn {
  display: none !important;
}

@media (max-width: 768px) {
  .work-process .card {
    border: none;
    padding: 0 14px 0;
    background: transparent;
    margin-bottom: 31px;
  }

  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 48px;
  }

  .cta h4 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 32px !important;
  }

  .ctn {
    display: block !important;
  }

  #topbar {
    padding: 0;
    font-size: 14px;
  }

  .mails {
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
    padding: 30px 53px 31px;
    background: #fff;
    position: relative;
    margin-top: 33px;
  }

  .display-3 {
    font-size: 22px !important;
    font-weight: 800;
    line-height: 1.2;
  }

  #topbar i span {
    color: #fff;
    font-style: normal;
    padding-left: 5px;
    font-size: 12px;
  }
}

.model-body .form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 98%;
  padding: 13px 16px;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.modal .form-control {
  display: block;
  width: 100%;
  padding: 22px 0.75rem !important;
  font-size: 15px !important;
  font-weight: 400;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 2px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.h5,
h5 {
  font-size: 21px;
  color: #0c1c33;
  font-weight: 600;
}

.Careers ul li {
  font-size: 14px;
  margin-bottom: 12px;
}