:root{
    --primary-color:#194385;
    --secondary-color: #38b6ff;
    --content-color: #333;
    --black-color:#000;
    --primary-font: 'Roboto';
    --content-font: 'Open Sans';
    --border-color: #eee;
}
html {
  scroll-behavior: smooth;
}
body {
    margin: 0px;
    font-family: var(--primary-font);
}
h1{
    font-size: 76px;
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 900;
    text-transform: uppercase;
}
h2{
    font-size: 48px;
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: uppercase;
    font-weight: 900;
}
h3{
    font-size: 48px;
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: uppercase;
}
h4{
    font-size: 26px;
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: uppercase;
}
h5{
    font-size: 22px;
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: uppercase;
}
h6{
    font-size: 18px;
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--primary-font);
    text-transform: uppercase;
}
p{
    margin:0px 0px 15px;
    line-height: 1.5;
}
p, a, li{
    font-family: var(--content-font);
    color: var(--content-color);
    font-size: 16px;
}
a{
    text-decoration: none;
    display: inline-block;
}
.highlight{
     color: var(--secondary-color);
}
.container {
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}
img{
    width: 100%;
}
header {
    background: #0000006e;
    position: fixed;
    width: 100%;
    padding: 10px 0px;
    z-index: 9;
}
header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0px 20px;
}
header .col {
    width: 50%;
}
header .logo img {
    max-width: 53px;
}
header .logo-heading a{
    display: flex;
    gap: 20px;
    align-items: center;
}
header .logo-heading .logo-head {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    font-family: var(--primary-font);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0px;
    width: 200px;
}
header .logo-heading .logo-head span {
    font-size: 8px;
}
ul.nav {
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    list-style: none;
    padding: 0px;
}
ul.nav li{
    position: relative;
    transition: .5s;
}
ul.nav li:after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    position: relative;
    display: block;
    transition: .5s;
    bottom: -11px;
}
ul.nav li:hover:after {
    width: 100%;
    transform: translateX(0px);
}
ul.nav a {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .5s;
    position: relative;
    padding: 20px 10px;
    color: #fff;
}
ul.nav a:hover{
    color: var(--secondary-color) !important;
}
ul.nav li a.button{
    background: var(--secondary-color);
    padding: 15px 20px;
    color: #fff !important;
}
ul.nav li a.button:hover{
    color: var(--black-color) !important;
    background: #fff;
    border-color: #fff;
}
ul.nav li.last-item::after{
    display: none;
}
.button {
    background: var(--secondary-color);
    color: #fff;
    padding: 18px 30px;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid var(--secondary-color);
    transition: .5s;
    border-radius: 100px;
    cursor: pointer;
}
.button:hover {
    color: var(--black-color) !important;
    background: #fff;
    border-color: #fff;
}
section.hero-banner {
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url(../images/hero-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 20px 0px;
}
section.hero-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: #000000;
    background: linear-gradient(90deg, rgb(0 0 0 / 40%) 0%, rgba(0, 0, 0, 0) 77%);
}
section.hero-banner .col {
    max-width: 650px;
    width: 100%;
    z-index: 1;
}
section.hero-banner .row {
    display: flex;
    align-items: center;
}
section.hero-banner h1 {
    margin: 0px 0px 20px;
    color: #fff;
}
section.hero-banner p {
    margin: 0px;
    color: #fff;
}
section.hero-banner .button {
    margin-top: 30px;
}
section.about {
    padding: 100px 20px;
}
section.about .row {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}
section.about .row .col {
    max-width: 50%;
    width: 100%;
}
section.about .row .col:first-child {
    max-width: 31%;
    width: 100%;
}
section.about h2 {
    margin: 40px 0px 20px;
    letter-spacing: 3px;
    font-weight: 900;
}
section.about h6 {
    margin: 10px 0px 0px;
}
section.about .row .col:first-child img {
    width: 100px;
}
section.about .row .col h4 {
    margin: 0px;
}
section.about h5 {
    margin: 30px 0px 0px;
    font-weight: 500;
}
blockquote {
    border-left: 6px solid #0ab7fb57;
    padding-left: 30px;
    margin: 0px;
    font-style: italic;
    line-height: 1.5;
}
section.features {
    padding: 100px 20px 100px;
    background: var(--primary-color);
}
section.features .row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
section.features h2 {
    color: #fff;
    margin: 0px 0px 60px;
}
.feature-box {
    max-width: calc(100% / 5 - 24px);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
}
.feature-box:before{
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000;
    background: linear-gradient(0deg, rgb(0 0 0) 0%, rgba(0, 0, 0, 0) 60%);
    position: absolute;
    z-index: 1;
}
.feature-box .figure {
    aspect-ratio: 1/1.8;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.feature-box .figure img {
    height: 100%;
    object-fit: cover;
    transition: .8s;
}
.feature-box:hover .figure img {
    transform: scale(1.1);
    transition: .8s;
}
.feature-box .content {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 0px 0px 10px 10px;
    transition: .5s;
    z-index: 2;
    min-height: 162px;
}
.feature-box .content h4 {
    margin: 0px;
    color: #fff;
    transition: .5s;
}
.feature-box .content p {
    font-size: 14px;
    margin: 0px;
    color: #fff;
}
section.contact .head h2{
    margin: 0px 0px 20px;
    max-width: 600px;
}
section.contact .head p{
    margin: 0px 0px 60px;
}
section.contact .row {
    display: flex;
    gap: 60px;
    justify-content: center;
}
section.contact .row .col {
    padding: 100px 20px;
    width: calc(100% / 2);
}
section.contact .row .col.contact-form {
    background: #eaeaea;
    padding: 50px !important;
}
form {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
}
form .field-group:first-child {
    flex-direction: row;
}
form .field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
form .col-half {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.field-group label {
    font-size: 14px;
    text-transform: capitalize;
}
input {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--content-font);
    color: var(--content-color);
}
textarea{
    min-height:140px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--content-font);
    color: var(--content-color);
}
input:focus, input:focus-visible, textarea:focus, textarea:focus-visible {
    border-color: var(--secondary-color);
    outline: none;
}
input.button {
    height: auto;
}
.field-group.submit-button {
    width: auto;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info .icon-box {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    position: relative;
}
.contact-info .icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.contact-info .icon-box .content {
    width:  max-content;
    position: relative;
}
.contact-info .icon-box  a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}
.contact-info .icon-box .content p.title {
    margin: 0px;
    text-transform: uppercase;
    color: var(--black-color);
    font-weight: 600;
}
.contact-info .icon-box .content p.info {
    font-size: 14px;
    margin: 0px;
}
section.copyright {
    background: var(--primary-color);
    padding: 10px 20px;
    
}
section.copyright p {
    margin: 0px;
    color: #fff;
    text-align: center;
    font-size: 11px;
}
.toggle {
    display: none;
}
@media(max-width: 1024px){
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 32px;
    }
    section.about .row .col:first-child {
        max-width: 100%;
    }
    .feature-box {
        max-width: calc(100% / 3 - 21px);
    }
}
@media(max-width:767px){
    h1 {
    font-size: 42px;
}
section.hero-banner {
    min-height: 500px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .4);
}
section.about .row {
    flex-direction: column;
    gap: 30px;
}
section.about .row .col {
    max-width: 100%;
}
section#about {
    padding: 60px 20px;
}
section#features {
    padding: 60px 20px;
}
section.features h2 {
    margin-bottom: 30px;
}
.feature-box {
    max-width: 100%;
}
.feature-box .figure {
    aspect-ratio: 1/1;
}
.feature-box .content {
    min-height: auto;
}
section.contact .row {
    flex-direction: column;
    gap: 0px;
}
section.contact .row .col, section.contact .row .col.contact-form {
    width: -webkit-fill-available;
    padding: 60px 20px !important;
}
section.contact .head p {
    margin-bottom: 30px;
}
form .field-group:first-child {
    flex-wrap: wrap;
}
.button {
    padding: 12px 30px;
}
.toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
    z-index: 1;
    position: relative;
}
header.expended-menu .toggle span {
    background: var(--black-color);
}
.toggle span {
    height: 1px;
    width: 30px;
    position: relative;
    display: block;
    background: #fff;
    transition: .5s;
}
.toggle span.center {
    width: 25px;
}
.toggle span.bottom {
    width: 20px;
}
header.expended-menu .toggle span.bottom {
    display: none;
}
header.expended-menu .toggle span.top {
    transform: rotate(45deg);
}
header.expended-menu .toggle span.center {
    transform: rotate(-45deg);
    left: -1px;
    top: -6px;
    width: 30px !important;
}
ul.nav {
    display: none;
    position: fixed;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 30px 20px;
}
header.expended-menu ul.nav{
    display: flex;
}
ul.nav a {
    color: var(--black-color);
    padding: 0px;
    font-size: 20px;
}
ul.nav li a.button {
    padding: 10px 20px;
}
header .logo-heading .logo-head {
    font-size: 26px;
    width: 600px;
}
header .col.logo {
    width: 70%;
    z-index: 1;
}
header .col.menu {
    width: 30%;
}
header .logo img {
    max-width: 40px;
}
header.expended-menu .logo-heading .logo-head {
    color: var(--black-color);
}

}