/* Base CSS */
/* font family */
/* @font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Thin.otf');
    font-weight: 100;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamLight.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBook.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBold.ttf');
    font-weight: 700;
} */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Bold.ttf');
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    
  font-family: "Montserrat", sans-serif;
    background-color: #111828;
    color: #fff;
    letter-spacing: .35px;
}
a {
    text-decoration: none;
    transition: all .3s;
}
button {
    transition: all .3s;
}
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: none;
}
.container {
    padding: 0 20px;
}
.section-title h2 {
    font-size: 42px;
    margin-bottom: 45px;
    font-weight: 400;
}
.section-title p {
	font-size: 26px;
	padding: 0 20px;
	line-height: 32px;
}
/* Base CSS End */

/* header area start */
.header-area {
    padding: 10px 0;
}
.logo img {
	max-width: 280px;
}
.menu-wrapper {
    gap: 70px;
}
.menu-wrapper li {
    padding: 10px 0;
}
.menu-wrapper li a {
	font-size: 20px;
	color: #000;
	transition: all .3s;
	display: inline-block;
}
.menu-wrapper li a:hover {
    color: #0F70B5;
}
.dropdown__menu {
	background-color: #67B664;
	width: 200px;
	border-top: 3px solid #0F70B5;
	top: 120%;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}
.dropdown-container:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.dropdown__menu li a {
	padding: 10px 20px;
	line-height: 1;
	color: #fff;
	border-bottom: 1px solid #fff;
}
.dropdown__menu li:last-child a {
    border-bottom: 0;
}
.dropdown__menu li a:hover {
    background-color: #fff;
    color: #F79727;
}

/* offcanvas menu start */
.offcanvas {
	background-color: #0F70B5;
}
.menu-close {
	font-size: 24px;
    transition: all .3s;
}
.menu-close:hover {
    color: #F7982B !important;
}
.menu-bar {
    font-size: 24px;
    transition: all .3s;
}
.menu-bar:hover {
    color: #0F70B5;
}
.offcanvas .menu-wrapper {
	gap: 20px;
	margin-top: 30px;
}
.offcanvas .menu-wrapper li a {
	font-size: 20px;
	color: #fff;
}
.offcanvas .menu-wrapper li a:hover {
    color: #F7982B;
}
.offcanvas .product-nav li {
    padding: 5px 0;
}
.offcanvas .product-nav li a {
    font-size: 18px;
}

/* header area end */

/* hero area start */
.hero-area {
    padding-top: 50px;
    padding-bottom: 20px;
}
.hero-area::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #0F70B5;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 59%);
	z-index: -1;
}
.hero-title {
	font-size: 48px;
}
.hero-subtitle {
	font-size: 22px;
	max-width: 815px;
}
.hero-desc {
	font-size: 24px;
	max-width: 1065px;
	margin-top: 70px;
	line-height: 30px;
}
/* hero area end */

/* platform area start */
.platform-area {
	padding-top: 70px;
}
.platform-wrapper {
	margin-bottom: 100px;
}
.platform-wrap-title {
	margin-bottom: 80px;
}
.platform-card {
	max-width: 372px;
	background-color: #1F2937;
	border-radius: 30px;
	padding: 15px 20px 28px;
} 
.platform-card .card-icon {
	min-height: 95px;
	margin-bottom: 30px;
}
.platform-card .card-desc {
	margin-bottom: 60px;
	min-height: 96px;
}
.card-btn a {
	background-color: #0F70B5;
	gap: 18px;
	padding: 5px 5px 5px 15px;
	color: #fff;
	border-radius: 30px;
	border: 1px solid #fff;
    transition: all .3s;
}
.card-btn a .btn-icon {
	height: 25px;
	width: 25px;
}
.card-btn a:hover {
    background-color: #F79626;
}
.platform-wrapper:nth-child(even) .platform-card-wrap {
    gap: 100px;
}
/* platform area end */

/* about area start */
.about-area {
    padding-top: 20px;
    padding-bottom: 55px;
}
.about-area-title h2 {
    color: #0f70b5;
}
.about-wrapper {
	padding: 20px 40px 55px;
    background-image: linear-gradient( to right, rgb(55,74,70) 0%, rgb(33,59,85) 100%);
    border-radius: 30px;
    gap: 120px;
    max-width: 1112px;
}
.about-card {
	width: 255px;
}
.about-card .card-icon {
    min-height: 95px;
}
.about-card  .card-title {
	font-size: 21px;
	line-height: 1;
	color: #0f70b5;
	margin-bottom: 30px;
}
.about-card .card-desc {
	font-size: 18px;
	line-height: 22px;
}
/* about area end */

/* footer area start */
.brand-title {
    font-size: 32px;
    line-height: 1;
    color: #0088d5;
    margin-bottom: 20px;
}
.brand-wrapper {
	padding: 30px 0;
	max-width: 1112px;
}
/* footer area end */


/* hadron page start */
.hadron-page-wrap {
	background-image: url('../img/hadron-bg.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
}
/* hero area start */
.hadron-hero {
    padding-top: 15px;
	min-height: 700px;
}
.hadron-hero::after {
    display: none;
}
.hero-icon {
	width: 220px;
}
.hadron-hero .hero-title {
    margin-bottom: 18px;
}
.hadron-hero .hero-subtitle {
	font-size: 26px;
	max-width: 1110px;
	line-height: 24px;
	letter-spacing: 1px;
    margin-bottom: 48px;
}
.download-btn a {
    font-size: 18px;
    line-height: 1;
    border: 4px solid #fff;
    border-radius: 28.5px;
    padding: 5px 20px 5px 5px;
    gap: 15px;
}
.hadron-hero .hero-img {
    bottom: 10px;
    right: 30px;
}

/* hero area end */

/* about area start */
.about-hadron {
	padding-top: 50px;
	padding-bottom: 140px;
}
.about-hadron .about-wrapper {
    max-width: 100%;
    background-image: none;
    margin-top: 100px;
    padding-left: 35px !important;
}
.about-hadron .about-wrapper .row {
	--bs-gutter-x: 128px;
	--bs-gutter-y: 45px;
}
.about-content {
    padding-left: 25px;
}
.about-content::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FF004D;
    position: absolute;
    top: 5px;
    left: 0;
}
.about-content h4 {
	font-size: 24px;
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
.about-content p {
	font-size: 18px;
	line-height: 1;
	margin-bottom: 0;
	letter-spacing: .35px;
}
/* about area end */

/* case area start */
.case-area-title h2 {
    font-size: 40px;
    margin-bottom: 36px;
}
.case-wrapper .row {
    --bs-gutter-x: 38px;
}
.case-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.case-content p {
    line-height: 18px;
    letter-spacing: 1px;
}
/* case area end */

/* brand area start */
.hadron-page-wrap .brand-wrapper {
	padding: 65px 0 120px;
	max-width: 1050px;
	gap: 50px;
}
.hadron-page-wrap .brand-area {
    padding-top: 80px;
    padding-bottom: 50px;
}
.brand-area-btn a {
	font-size: 21px;
	font-weight: 100;
	line-height: 1;
	padding: 16px 50px;
	transition: all .3s;
}
.brand-area-btn a:hover {
    background-color: #fff;
    color: #000 !important;
}
/* brand area end */

/* footer area start */
.footer-wrapper {
    padding: 85px 0;
}
.footer-wrapper .download-btn {
    margin-top: 90px;
}
.footer-wrapper .download-btn a {
    border: 2px solid #0F70B5;
    color: #0F70B5;
}
.copyright {
    padding: 35px 0;
    background-color: #181818;
}
.copyright p {
    font-size: 21px;
    font-weight: 100;
}

/* footer area end */

/* hadron page end */

/* particle page start */
.particle-page-wrap  {
    background-image: none;
    background-color: #181818;
}
.particle-hero {
    padding: 135px 0 140px;
}
.particle-hero::after {
	content: '';
	width: 100%;
	height: 650px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient( to right, rgb(184,112,38) 0%, rgb(180,54,90) 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 6%);
	z-index: -1;
	display: block;
}
.hero-roaddmap {
    margin-top: 56px;
}
.roadmap-wrapper {
	padding-top: 215px;
	padding-bottom: 80px;
}
.roadmap-btn a {
	margin-top: 10px;
	font-size: 12px;
	gap: 5px;
	color: #fff;
	border: 2px solid #FA7B24;
	border-radius: 30px;
	padding: 3px 5px 3px 3px;
	transition: all .3s;
}
.roadmap-btn a span  {
    width: 25px;
    height: 25px;
    background-color: #FA7B24;
    transition: all .3s;
}
.roadmap-btn a:hover {
    background-color: #FA7B24;
}
.roadmap-btn a:hover span {
    background-color: #fff;
    color: #FA7B24;
}
.roadmap-wrapper::after {
	content: '';
	width: 1042px;
	height: 4px;
	background-color: #FF9900;
	position: absolute;
	left: 96px;
	top: 90px;
}
.roadmap-wrapper::before,
.roadmap-content::before {
    content: '';
    width: 4px;
    height: 90px;
    background-color: #FF9900;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.roadmap-wrapper::before {
    top: 0;
}
.roadmap-content::before {
	top: -121px;
}
.roadmap-bottom p {
	font-size: 50px;
	line-height: 56px;
	margin-bottom: 60px;
}

.particle-case-area .case-wrapper {
    padding: 40px 110px 40px 65px;
    border-radius: 15px;
    background-color: #2A2A2A;
}
.particle-case-area .case-wrapper .case-content:first-child {
    width: 255px;
}
.particle-case-area .case-wrapper .case-content:nth-child(2) {
    width: 270px;
}
.particle-case-area .case-wrapper .case-content:last-child {
    width: 200px;
}
.particle-case-area .case-wrapper .case-content:nth-child(2):before,
.particle-case-area .case-wrapper .case-content:nth-child(2):after {
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF9900;
    left: -90px;
}
.particle-case-area .case-wrapper .case-content:nth-child(2):after {
    left: auto;
    right: -90px;
}
.particle-case-area .case-wrapper .case-content p {
    font-size: 21px;
    line-height: 24px;
}
.particle-page-wrap .about-area {
	padding-top: 95px;
	padding-bottom: 80px;
}
.particle-page-wrap .about-wrapper {
	padding: 50px 40px 50px 45px;
    background-image: linear-gradient( to right, rgb(184,112,38) 0%, rgb(180,54,90) 100%);
}
.particle-page-wrap .about-content p {
    letter-spacing: .15px;
}

.footer-area.curve-bg {
    background-image: url('../img/footer-bg.png');
    background-size: 100% 100%;
    background-position: center;
}
.particle-page-wrap .footer-wrapper {
	padding: 230px 0 150px;
    margin-top: 15px;
}
/* particle page end */

/* faq area start */
.faq-area {
    font-family: 'Helvetica';
    padding: 54px 0 83px;
    background-image: url('../img/faq-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.faq-area-title {
    font-size: 46px;
    line-height: 1;
    color: #0f70b5;
    margin-bottom: 55px;
}
.faq-wrapper {
    gap: 49px;
}
.single-faq {
	border-radius: 20px;
	padding: 20px 59px;
}
.single-faq h4 {
    font-size: 20px;
    line-height: 1;
    color: #0F70B5;
    margin-bottom: 15px;
}
.single-faq p {
    font-size: 14px;
    color: #373535;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}
/* faq area end */

/* contact area start */
.contact-area {
    padding: 100px 0 80px;
    background-color: #F3F3F3;
    color: #000;
}
.contact-area-title {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 30px;
}
.contact-wrapper {
	padding: 30px 60px 30px 35px;
}
.form-left {
	width: 40%;
}
.form-right {
    width: 55%;
}
.form-left {
	width: 40%;
	gap: 15px;
}
.form-input {
	padding: 15px;
	text-align: center;
	font-size: 22px;
	word-break: break-all;
	border-radius: 10px;
}
.form-input::placeholder {
    opacity: 1;
}
.discuss-topic h4 {
	font-size: 20px;
	margin-bottom: 30px;
}
.topic-wrapper {
	gap: 15px 0;
	margin-bottom: 40px;
}
.single-topic {
	width: 45%;
}
.single-topic label {
	font-size: 18px;
	line-height: 1;
	padding-left: 30px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.single-topic input {
    width: 0;
    height: 0;
}
.single-topic .checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #000;
    transition: all .3s;
}
.single-topic .checkbox::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.single-topic input:checked ~ label .checkbox::after {
    opacity: 1;
    visibility: visible;
}
textarea {
	height: 150px;
	resize: none;
	padding-top: 10px;
}
.form-btn {
    margin-top: 10px;
}
.form-btn button {
    font-size: 20px;
    line-height: 1;
    padding: 10px 50px;
    border-radius: 10px;
    transition: all .3s;
}
.form-btn button:hover {
    background-color: #000 !important;
    color: #fff;
}
.contact-map {
	max-width: 820px;
	margin-top: 50px;
}
.contact-darkmatter {
	max-width: 410px;
	margin-top: 50px;
}

/* contact area end */