:root {
    --primary-color: #46a5ef;
    --secondary-color: #368dee;
    --bg-light-color: #f5f5f5;
    --bg-dark-color: #081D33;
    --white-color: #ffffff;
    --title-color: #000000;
    --text-color: #444444;
    --transition: all 0.3s;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
    background-color: var(--white-color);
}

html {
    scroll-behavior: smooth;
}

/* Scroll */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #dddddd;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;
    background-color: var(--primary-color);
}

/* Scroll */

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a,
a:hover,
a:focus {
    /* text-transform: capitalize; */
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: "Ubuntu", sans-serif;

}

p {
    font-family: "Lato", sans-serif;

}

img,
video {
    max-width: 100%;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
}

input,
select {
    height: 60px !important;
    background-color: var(--white-color);
    border-radius: 10px;
    border: none !important;
    color: var(--text-color) !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/* container */
.icm-container {
    max-width: 1170px;
    margin: 0 auto;
}

/* container end*/

/* Buttton CSS Start */
.icm-btn {
    min-width: 150px;
    width: fit-content;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 5px;
    padding: 0 30px;
    margin: 0;
    text-transform: uppercase;
    border: none;
    outline: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.icm-btn:hover {
   background-color: var(--secondary-color);
}
/* heading */

.icm-heading {
    color: var(--title-color);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.icm-subheading {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;

}

/* heading end */

/* section heading */
.icm-section-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.icm-section-heading .icm-heading {
    font-size: 40px;
}

.icm-section-heading .icm-subheading {
    font-size: 22px;
    margin: 10px 0 0;
}

/* section heading end */
/* header css start */
.icm-header-wrapper {
    padding: 15px 15px;
    background-color: var(--white-color);
}

.icm-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icm-logo a span {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.icm-logo img {
    max-width: 250px;
}

/* header css end */

/* banner */
.icm-banner-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--bg-light-color);
    padding: 100px 15px;
}
.icm-banner-wr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.icm-banner-left {
    max-width: 550px;
}
.icm-banner-right img {
    max-width: 600px;
    object-fit: contain;
}
.icm-banner-wr .icm-heading {
    color: var(--title-color);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;

}

.icm-banner-wr .icm-subheading {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}

/* banner end */
/* section01 */
.icm-section01-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--white-color);
    padding: 75px 15px;
}

.icm-section01-item-wr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.icm-section01-item {
    border-radius: 16px;
    background-color: var(--white-color);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    text-align: center;
    padding: 40px 15px;
}

.icm-section01-img {
    margin-bottom: 25px;
}

.icm-section01-item img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.icm-section01-item .icm-heading {
    font-size: 20px;
    font-family: "Lato", sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.icm-section01-item .icm-heading:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 15%;
    height: 2px;
    background-color: var(--primary-color);
}

.icm-section01-item .icm-subheading {
    font-size: 18px;
}

/* section01 end*/

/* section02 */

.icm-section02-wrapper {
    position: relative;
    width: 100%;
    padding: 50px 15px;
    background: var(--primary-color);
    text-align: center;
}

.icm-section02-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-image: url('../images/bg-img.png');
    opacity: .3;
}

.icm-section02-wrapper .icm-section02-content .icm-heading {
    position: relative;
    font-size: 40px;
    color: var(--white-color);
}

/* section02 end*/

/* section03 */
.icm-section03-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 15px;
    background: var(--bg-dark-color);
    text-align: center;
}

.icm-section03-wrapper .icm-subheading {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
    padding: 0;
}

/* section03 end*/
@media(max-width:1200px) {
    .icm-heading {
        font-size: 35px;
    }

    .icm-subheading {
        font-size: 16px;
    }
}
@media(max-width:991px) {
    .icm-section-heading .icm-heading {
        font-size: 25px;
    }

    .icm-section-heading .icm-subheading {
        font-size: 15px;
    }

    .icm-banner-wr {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .icm-banner-wrapper {
        padding: 45px 15px;
    }

    .icm-banner-wr .icm-heading {
        font-size: 28px;
        line-height: 1.4;
    }

    .icm-banner-wr .icm-subheading {
        font-size: 16px;
    }

    .icm-btn {
        min-width: 100px;
        height: 40px;
        font-size: 14px;
    }

    /* section01 */
    .icm-section01-wrapper {
        padding: 45px 15px;
    }

    .icm-section01-item-wr {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .icm-section01-item .icm-heading {
        font-size: 16px;
    }

    .icm-section01-item .icm-subheading {
        font-size: 16px;
    }

    /* section02 */
    .icm-section02-wrapper {
        padding: 40px 15px;
    }

    .icm-section02-wrapper .icm-section02-content .icm-heading {
        font-size: 22px;
    }

}

@media(max-width:767px) {

    .icm-banner-right img {
        max-width: 100%;
    }

    /* section02 */
    .icm-section02-wrapper {
        padding: 35px 15px;
    }

    .icm-section02-wrapper .icm-section02-content .icm-heading {
        font-size: 20px;
    }

    .icm-section03-wrapper {
        padding: 10px 15px;
    }

    /* section03 */
    .icm-section03-wrapper .icm-subheading {
        font-size: 15px;
    }
}

@media(max-width:767px) {
    .icm-logo img {
        max-width: 220px;
    }
}
