/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://yoursite.com/
 Description:  Child theme for hello-elementor
 Author:       AWT
 Author URI:   https://yoursite.com/
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 160%;
}

h1 {
    font-size: 50px;
    line-height: 120%;
}

h2{
    font-size: 34px;
    line-height: 120%;
    position: relative;
}

h3 {
    font-size: 22px;
}

p, li {
    color: #3D4658;
    line-height: 160%;
}

a {
    text-decoration: none;
}

.mt16 {
    margin-top: 16px;
}

.mt8 {
    margin-top: 8px;
}

.pt40 {
    padding-top: 40px;
}

.clr-blue {
    color: #1E40AF !important;
}
.bg-lgt{
    background:#F7F8FA;
}
.site-width {
    max-width: 1440px;
    padding-left: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-right: auto;
}

.ptb60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mx800 {
    max-width: 800px !important;
}

.mlr-auto {
    margin-left: auto;
    margin-right: auto;
}

.t-center {
    text-align: center;
}

.flex {
    display: flex;
}

.wrap {
    flex-wrap: wrap;
}

.gap60 {
    gap: 60px;
}

.gap40 {
    gap: 40px;
}

.gap16 {
    gap: 16px;
}

.align-center {
    align-items: center;
}

.home header.entry-header,
a.skip-link.screen-reader-text{
    display: none;
}
header .flex {
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 170px;
}

.btn,
#btn,
#submit-btn{
    background-color: #1E40AF;
    color: #fff;
    padding: 16px 24px;
    font-weight: 600;
    border-radius: 6px;
    display: block;
    width: max-content;
    border:1.5px solid #1E40AF;
}
.btn.trans{
    background-color: unset;
    border:1.5px solid #D8DBE2;
    color: #101828;
}
header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: #F4FBFE;
    z-index:999;
}

.btn img {
    max-width: 20px;
}
.col {
    flex: 1;
}
.list {
    list-style: none;
}
.list li {
    padding-bottom: 16px;
    padding-left: 30px;
    position: relative;
}
ul.list li::before {
    content: '';
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 25px;
    left: 0px;
    top: -1px;
    background-image: url(../../../../../wp-content/uploads/2026/08/check.svg);
}
.top-line::before{
    content:'';
    position:absolute;
        background: #1E40AF;
    width: 44px;
    height: 2px;
    top: -8px;
}