/* Webfont include */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
}

/* Color */

:root {
    --primary-Light: #228899;
    --Primary-dark: #88BBCC;
    --border-fill-primary:#005761;
    --error: #EB4335;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    padding: 0;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
    transition: all .6s;
    text-decoration: none;
}

h1 {
    font-size: 48px;
    line-height: 60px;
}

h1,
h2,
h3 {
    font-style: normal;
    font-weight: 600;
    color: var(--black);
}

h4,
h5,
h6 {
    margin: 0;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    color: var(--black);
}

ul,
li {
    margin: 0px;
    font-weight: 500;
    list-style-type: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

a {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
}


a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol,
li {
    padding: 0;
    margin: 0;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: var(--text-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-Light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-Light);
    border-radius: 10px;
}

input,
button,
input:focus,
button:focus,
textarea,
textarea:focus,
select,
select:focus {
    outline: none !important;
    box-shadow: none;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
textarea,
textarea:hover,
textarea:focus {
    outline: none;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: var(--Primary-dark-800);
}


/* top hero banner start */
.hero-banner{
    background-color: var(--primary-Light);
}
.hero-banner img {
    width: 100%;
}
/* top hero banner end */

/* main body cntn start */
.main-body-cntn{
    background-color:var(--Primary-dark);
}
.main-body-cntn-inner{
    background-color: var(--white);
    padding: 50px;
}
.main-body-cntn-inner h5 {
    font-size: 28px;
    color: var(--black);
    margin:15px 0px;
}
.main-body-cntn-inner ul li {
    font-size: 24px;
    font-weight: 600;
    padding: 6px 0px;
    color: var(--primary-Light);
    margin-left: 21px;
    list-style-type:disc;
}
.main-body-cntn-inner ul{
    margin:30px 0px;
}
.main-body-cntn-inner img {
    width: 100%;
    margin: 25px 0px;
}
.next-level-head {
    text-align: center;
    margin: 15px 0px 45px;
}
.next-level-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-Light);
    margin-bottom: 16px;
}
.next-level-head h4{
    font-size: 24px;
    font-weight: 800;
}
form.main-form .form-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
form.main-form .form-group label{
    width:180px;
    font-size: 26px;
    color: var(--black);
}
form.main-form input.form-control{
    flex: 1;
    height: 43px;
    border-radius: 0px;
    border: 1px solid #5F5F5F;
}
form.main-form textarea.form-control{
    border-radius: 0px;
    flex: 1;
    border: 1px solid #5F5F5F;
    height: 200px;
    padding-top: 16px;
}
form.main-form .form-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 15px 0px;
}
form.main-form .form-button {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 80px;
    text-align: left;
}
.captha-text {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-top: 10px;
}
.form-captha p {
    font-size: 14px;
    color: #5F5F5F;
    font-weight: 600;
}
.captha-text input {
    height: 31px;
    border-radius: 4px;
    padding: 5px 10px;
}
.captha-text h4 {
    font-size: 24px;
    letter-spacing: 2px;
}


form.main-form .form-button button.btn {
    background:var(--primary-Light);
    color: var(--white);
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 30px;
}
form.main-form {
    padding: 45px;
    border: 3px solid var(--border-fill-primary);
}

/* main body cntn end */

/* footer start */
footer{
    background-color: var(--primary-Light);
}
.footer-inner{
    background: url('../images/bottom-section.png')no-repeat;
    background-position: center;
    background-size: cover;
    padding: 50px 0px;
    text-align: center;
    color:var(--white);
}
/* footer end */
