:root {
	 --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	 --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	 --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	 --color: #c7232f;
	 --color2: #161d27;
	 --color2-dark: #0f131a;
}
 *, *::before, *::after {
	 padding: 0;
	 margin: 0;
	 box-sizing: border-box;
	 list-style: none;
	 list-style-type: none;
	 text-decoration: none;
	 -webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
	 text-rendering: optimizeLegibility;
}
 html {
	 scroll-behavior: smooth;
	 height: -webkit-fill-available;
}
 body {
	 font-family: "Inter", sans-serif;
	 font-size: 14px;
	 font-weight: 400;
	 line-height: 1.4;
	 color: #000;
	 background-color: #fff;
	 transition: 0.35s;
}
 body.darkmode {
	 color: #fff;
	 background-color: var(--color2-dark);
}
 main {
	 overflow: hidden;
}
 a, button {
	 cursor: pointer;
	 user-select: none;
	 border: none;
	 outline: none;
	 background: none;
}
 img, video {
	 display: block;
	 max-width: 100%;
	 height: auto;
	 object-fit: cover;
}
 img {
	 image-rendering: -webkit-optimize-contrast;
	 image-rendering: -moz-crisp-edges;
	 image-rendering: crisp-edges;
}
 @keyframes slideLeft {
	 0% {
		 opacity: 0;
		 transform: translateX(100%);
	}
	 100% {
		 opacity: 1;
		 transform: translateX(0%);
	}
}
 @keyframes slideRight {
	 0% {
		 opacity: 1;
		 transform: translateX(0%);
	}
	 100% {
		 opacity: 0;
		 transform: translateX(100%);
	}
}
 .section {
	 margin: 0 auto;
	 padding: 6rem 0 2rem;
}
 .container {
	 max-width: 75rem;
	 height: auto;
	 margin-inline: auto;
	 padding-inline: 1.5rem;
}
 .centered {
	 text-align: center;
	 vertical-align: middle;
	 margin-bottom: 1rem;
}
 .header {
	 position: static;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: auto;
	 z-index: 100;
	 margin: 0 auto;
	 background-color:#0b253e;
	 box-shadow: var(--shadow-medium);
}
 .darkmode .header {
	 background-color: var(--color2);
}
 .navbar {
	 display: flex;
	 flex-wrap: wrap;
	 align-content: center;
	 align-items: center;
	 justify-content: space-between;
	 width: 100%;
	 height: 65px;
	 margin: 0 auto;
}
 .navbar .navbar__left {
	 display: flex;
	 align-items: center;
	 flex: 0 0 17%;
}
#menu ul.menu__inner {
    margin-top: -22px;
}
 @media (max-width: 992px) {
	 .navbar .navbar__left {
		 flex: 0 0 auto;
        top: -7px;
        position: relative;
	}
}
 .navbar .navbar__center {
	 display: flex;
	 }
 @media (max-width: 992px) {
	 .navbar .navbar__center {
		 flex: 0 0 100%;
		 order: 3;
		 align-items: center;
	}
}
 .navbar .navbar__right {
	 display: flex;
	 flex: 0 0 17%;
	 align-items: center;
	 justify-content: flex-end;
	 column-gap: 1.5rem;
}
 @media (max-width: 992px) {
	 .navbar .navbar__right {
		 flex: 0 0 auto;
		 align-items: center;
	}
}
 .brand {
	 display: flex;
	 align-items: center;
	 order: 1;
}
 .brand svg {
	 width: 60px;
	 height: 60px;
}
 @media (max-width: 992px) {
	 .menu {
		 position: fixed;
		 top: 0;
		 left: 0;
		 width: 350px;
		 max-width: 85%;
		 height: 100%;
		 z-index: 100;
		 overflow:auto;
		 background-color:#0b253e;
		 transform: translate(-100%);
		 transition: all 0.4s ease-in-out;
		 z-index: 9;
	}
	 .menu.is-active {
		 transform: translate(0%);
	}
	 .darkmode .menu {
		 background-color: var(--color2);
	}
}
 .menu .menu__header {
	 display: none;
	 box-shadow: var(--shadow-medium);
}
 @media (max-width: 992px) {
	 .menu .menu__header {
		 position: relative;
		 top: 0;
		 display: flex;
		 align-items: center;
		 justify-content: flex-start;
		 height: 4rem;
		 z-index: 110;
		 visibility: hidden;
		 background: transparent;
	}
	 .menu .menu__header.is-active {
		 visibility: visible;
		 background-color: #fff;
	}
	 .menu .menu__header.is-active > .menu__arrow {
		 display: flex;
	}
	 .darkmode .menu .menu__header.is-active {
		 background-color: var(--color2);
	}
}
 @media (max-width: 992px) {
	 .menu .menu__header .menu__arrow {
		 display: none;
		 justify-content: center;
		 align-items: center;
		 cursor: pointer;
		 width: 3rem;
	}
	 .menu .menu__header .menu__arrow:hover i {
		 color: var(--color);
	}
	 .menu .menu__header .menu__arrow > i {
		 font-size: 1.5rem;
		 color: #000;
		 transition: all 0.25s ease;
	}
	 .darkmode .menu .menu__header .menu__arrow > i {
		 color: #fff;
	}
}
 @media (max-width: 992px) {
	 .menu .menu__header .menu__title {
		 cursor: pointer;
		 font-weight: 500;
		 text-transform: capitalize;
		 color: #000;
		 transition: all 0.25s ease;
	}
	 .menu .menu__header .menu__title:hover {
		 color: var(--color);
	}
	 .darkmode .menu .menu__header .menu__title {
		 color: #fff;
	}
}
 @media (max-width: 992px) {
	 .menu .menu__inner {
		 height: 100%;
		 margin-top: -3rem;
		 overflow-y: auto;
		 overflow-x: hidden;
	}
}
 .menu .menu__inner .menu__item {
	 position: static;
	 display: inline-block;
	 padding-right: 20px;
	 padding: 15px 20px 15px 15px;
}
 .menu .menu__inner .menu__item:last-child {
	 padding-right: 0;
}
 .menu .menu__inner .menu__item:hover > .menu__link {
	 color: var(--color);
}
 .darkmode .menu .menu__inner .menu__item:hover > .menu__link {
	 color: var(--color);
}
 @media (max-width: 992px) {
	 .menu .menu__inner .menu__item {
		 display: block;
		 padding: 0;
	}
}
 @media (min-width: 767px) {
	 .menu .menu__inner .menu__item:hover > .menu__link i {
		 transform: rotate(-90deg);
	}
}
 @media (min-width: 767px) {
	 .menu .menu__inner .menu__item.menu__dropdown:hover > .submenu {
		 opacity: 1;
		 visibility: visible;
		 top: 95%;
	}
}
 .menu .menu__inner .menu__item .menu__link {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 cursor: pointer;
	 font-size: 16px;
	 font-weight:500;
	 color: #FFFFFF;
	 text-transform: capitalize;
	 transition: all 0.25s ease;
	 text-decoration: none;
	 position:relative;
}
.menu .menu__inner .menu__item .menu__link:hover {
    font-weight: 500;
}

.menu .menu__inner .menu__item .menu__link.active {
    color: rgba(241, 89, 42, 0.9);
	font-weight: 500;
}

.menu .menu__inner .menu__item .menu__link.active:after {
    content: '';
    background: rgba(241, 89, 42, 0.9);
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
}

 @media (max-width: 992px) {
	 .menu .menu__inner .menu__item .menu__link {
		 justify-content: space-between;
		 padding: 20px;
	}
}
 .menu .menu__inner .menu__item .menu__link > i {
	 margin-left: 5px;
	 font-size: 1.35rem;
	 transform: rotate(90deg);
	 transition: 0.35s;
}
 @media (max-width: 992px) {
	 .menu .menu__inner .menu__item .menu__link > i {
		 margin-left: 10px;
		 transform: rotate(0deg);
	}
}
 .darkmode .menu .menu__inner .menu__item .menu__link {
	 color: #fff;
}
 .submenu {
	 position: absolute;
	 z-index: 100;
	 top: 110%;
	 left: 50%;
	 width: 100%;
	 height: auto;
	 padding: 20px 15px;
	 border-radius: 0.25rem;
	 border-top: 2px solid var(--color);
	 background-color: #fff;
	 box-shadow: var(--shadow-medium);
	 opacity: 0;
	 visibility: hidden;
	 transition: all 0.35s ease-in-out;
	 transform: translateX(-50%);
}
 .darkmode .submenu {
	 border-top: 2px solid var(--color);
	 background-color: var(--color2);
}
 @media (max-width: 992px) {
	 .submenu {
		 position: absolute;
		 display: none;
		 top: 0;
		 left: 0;
		 width: 100%;
		 height: 100%;
		 max-width: none;
		 min-width: auto;
		 margin: 0;
		 padding: 100px 15px 0 15px;
		 border-radius: 0;
		 border-top: 0;
		 box-shadow: none;
		 opacity: 1;
		 overflow-y: auto;
		 visibility: visible;
		 transform: translateX(0%);
	}
	 .submenu.is-active {
		 display: block;
	}
}
 @media (min-width: 767px) {
	 .submenu {
		 animation: none !important;
	}
}
 @media (min-width: 767px) {
	 .submenu.megamenu__normal {
		 left: 65%;
		 max-width: 250px;
		 width: 100%;
		 height: auto;
		 margin: 0 auto;
	}
}
 @media (min-width: 767px) {
	 .submenu.megamenu__text, .submenu.megamenu__image {
		 display: flex;
		 flex-wrap: wrap;
		 max-width: 95%;
		 height: auto;
		 margin: 0 auto;
	}
}
 @media (min-width: 975px) {
	 .submenu.megamenu__text, .submenu.megamenu__image {
		 max-width: 992px;
	}
}
 .submenu.megamenu__image .submenu__inner a {
	 display: flex;
	 flex-flow: column;
	 align-items: center;
}
 @media (max-width: 992px) {
	 .submenu.megamenu__image .submenu__inner a {
		 flex-flow: row;
		 align-items: center;
		 padding-bottom: 20px;
	}
}
 .submenu.megamenu__image .submenu__inner a img {
	 display: block;
	 width: 100%;
	 height: 150px;
	 margin-bottom: 15px;
	 object-fit: cover;
	 border-radius: 10px;
}
 @media (max-width: 992px) {
	 .submenu.megamenu__image .submenu__inner a img {
		 width: 30%;
		 height: 80px;
		 margin-bottom: 0;
		 margin-right: 15px;
	}
}
 .submenu .submenu__inner {
	 width: 25%;
	 padding: 0 15px;
}
 @media (max-width: 992px) {
	 .submenu .submenu__inner {
		 width: 100%;
		 padding: 0;
	}
}
 .submenu .submenu__inner .submenu__title {
	 font-size: 16px;
	 font-weight: 500;
	 color: var(--color);
	 text-transform: uppercase;
	 transition: all 0.3s ease;
}
 .darkmode .submenu .submenu__inner .submenu__title {
	 color: var(--color);
}
 @media (max-width: 992px) {
	 .submenu .submenu__list {
		 margin-bottom: 20px;
	}
}
 .submenu .submenu__list li {
	 display: block;
	 line-height: 1;
	 margin: 0 auto;
}
 .submenu .submenu__list li a {
	 display: inline-block;
	 padding: 10px 0;
	 line-height: 1.4;
	 text-transform: capitalize;
	 color: #000;
	 transition: all 0.25s ease-in-out;
}
 .submenu .submenu__list li a:hover {
	 color: var(--color);
}
 @media (max-width: 992px) {
	 .submenu .submenu__list li a {
		 display: block;
	}
}
 .darkmode .submenu .submenu__list li a {
	 color: #fff;
}
 .darkmode .submenu .submenu__list li a:hover {
	 color: var(--color);
}
 .switch {
	 position: relative;
	 display: block;
	 cursor: pointer;
	 user-select: none;
	 margin-right: 10px;
}
 .switch .switch__light, .switch .switch__dark {
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform-origin: center;
	 transform: translate(-50%, -50%);
	 transition: all 0.3s ease-in;
}
 .switch .switch__light {
	 font-size: 20px;
	 visibility: visible;
	 color: #000;
}
 .darkmode .switch .switch__light {
	 font-size: 0;
	 visibility: hidden;
}
 .switch .switch__dark {
	 font-size: 0;
	 visibility: hidden;
	 color: #fff;
}
 .darkmode .switch .switch__dark {
	 font-size: 20px;
	 visibility: visible;
}
 .overlay {
	 position: fixed;
	 display: block;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 z-index: 9;
	 opacity: 0;
	 visibility: hidden;
	 background-color: rgba(0, 0, 0, 0.7);
	 transition: all 0.45s ease-in-out;
	 pointer-events: none;
}
 @media (max-width: 992px) {
	 .overlay {
		 cursor: url("https://i.imgur.com/cPh9Zm5.png"), zoom-out;
		 pointer-events: visible;
	}
	 .overlay.is-active {
		 opacity: 1;
		 visibility: visible;
	}
}
 .burger {
	 position: relative;
	 display: block;
	 cursor: pointer;
	 width: 25px;
	 height: 15px;
	 margin-right: 15px;
	 opacity: 0;
	 visibility: hidden;
	 background: transparent;
}
 @media (max-width: 992px) {
	 .burger {
		 opacity: 1;
		 visibility: visible;
	}
}
 .burger .burger-line {
	 position: absolute;
	 display: block;
	 left: 0;
	 width: 100%;
	 height: 2px;
	 opacity: 1;
	 border-radius: 15px;
	 background:#FFFFFF;
}
 .darkmode .burger .burger-line {
	 background: #fff;
}
 .burger .burger-line:nth-child(1) {
	 top: 0px;
}
 .burger .burger-line:nth-child(2) {
	 top: 8px;
	 width: 70%;
}
 .burger .burger-line:nth-child(3) {
	 top: 16px;
}
 
 
 .form {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #0b253e;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #123a60);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #08233d;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
    z-index: 4;
}

.container.cntus-custom {
    margin-top: 50px;
    max-width: 900px;
    width: 100%;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 3;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding:0.65rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
    z-index: 2;
    background: #FFF;
}

.contact-info .title {
  color: #ff5625;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #ff5625;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #22568d, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #22568d;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background:linear-gradient(to bottom, #28496c, #0c2239);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
  z-index: 1;
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}
