﻿@import url(https://fonts.googleapis.com/css?family=Lora|Roboto:400,500);

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    font-variant-ligatures: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
}

    body::before,
    body::after {
        content: "";
        display: table;
        clear: both;
    }

    body * {
        box-sizing: inherit;
    }

p, h1 {
    margin: 0;
    padding: 0;
}

body, .text-light-black {
    color: rgba(0,0,0,0.6);
}

.text-black {
    color: rgba(0,0,0,0.9);
}

.text-muted {
    color: rgba(0, 0, 0, 0.3);
}



.text-uppercase {
    text-transform: uppercase;
}

.ff-serif {
    font-family: 'Lora', serif;
}

.font-weight-normal {
    font-weight: normal;
}

.font-weight-medium {
    font-weight: 500;
}

.lts-1px {
    letter-spacing: 1px;
}

.lts-2px {
    letter-spacing: 2px;
}


.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute
}



.bg-white {
    background-color: #fff;
}






.small {
    font-size: 0.75rem;
}

.card-heading {
    font-size: 2.25rem;
}

.styled-link {
    text-decoration: none;
    outline: none;
    color: #2196fe;
    transition: all 0.25s ease-in;
}

    .styled-link:hover,
    .styled-link:focus,
    .styled-link:active {
        color: #536dfe;
    }

.shadow-1 {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}

.blue-hover {
    transition: all 0.25s ease-in;
    border-bottom: 5px solid transparent;
}

    .blue-hover:hover {
        transform: translateY(-5px);
        border: none;
        border-bottom: 5px solid #2196fe;
    }




.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}






/**Margin and padding utilities*/
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}


.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.ml-3 {
    margin-left: 3rem;
}




.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}


.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}






/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
    font-size: 36px;
    color: #283d50;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.section-header p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 60px;
    color: #556877;
    width: 50%;
}

@media screen and (max-width: 912px) {
    .section-header p {
        width: 75%;
    }

    #why-com .card {
        margin: 20px 20px;
    }
}

@media screen and (max-width: 540px) {
    .section-header p {
        width: 100%;
    }
}
/* Section with background
--------------------------------*/

.section-bg {
    background: #ecf5ff;
}

/* About com Section
--------------------------------*/

#about-1 {
    background: #fff;
    padding: 60px 0;
}

    #about-1 .about-container .background {
        margin: 20px 0;
    }

    #about-1 .about-container .content {
        background: #fff;
    }

    #about-1 .about-container .title {
        color: #333;
        font-weight: 700;
        font-size: 32px;
    }

    #about-1 .about-container p {
        line-height: 26px;
        font-size: 16px;
        font-weight: 500;
        color: #121111;
    }

        #about-1 .about-container p:last-child {
            margin-bottom: 0;
        }

    #about-1 .about-container .icon-box {
        background: #fff;
        background-size: cover;
        padding: 0 0 30px 0;
    }

        #about-1 .about-container .icon-box .icon {
            float: left;
            background: #fff;
            width: 64px;
            height: 64px;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
             align-items: center;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            text-align: center;
            border-radius: 50%;
            border: 2px solid brown;
            transition: all 0.3s ease-in-out;
        }

            #about-1 .about-container .icon-box .icon i {
                font-size: 24px;
            }

        #about-1 .about-container .icon-box:hover .icon {
            background: brown;
        }

            #about-1 .about-container .icon-box:hover .icon i {
                color: #fff;
            }

        #about-1 .about-container .icon-box .title {
            margin-left: 80px;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 18px;
        }

            #about-1 .about-container .icon-box .title a {
                color: #283d50;
            }

        #about-1 .about-container .icon-box .description {
            margin-left: 80px;
            line-height: 24px;
            font-size: 14px;
        }

    #about-1 .about-extra {
        padding-top: 60px;
    }

        #about-1 .about-extra h4 {
            font-weight: 600;
            font-size: 24px;
        }



#why-com {
    padding: 60px 0;
    /*background: #f9b80070;*/
}

    #why-com .section-header h3,
    #why-com .section-header p {
        color: #003b7a;
    }

    #why-com .card {
        background: lightslategray;
        border-color: #ffc907;
        border-radius: 10px;
        margin: 0 15px;
        padding: 15px 0;
        text-align: center;
        color: #fff;
        transition: 0.3s ease-in-out;
        height: 100%;
    }

        #why-com .card:hover {
            background: lightslategray;
            border-color: #c39c12;
        }

        #why-com .card i {
            font-size: 48px;
            padding-top: 15px;
            color: #bfddfe;
        }

        #why-com .card h5 {
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            color: #fff;
            margin: 15px 0;
        }

        #why-com .card p {
            font-size: 15px;
            color: #d8eafe;
            margin: 0 10px;
        }

        #why-com .card .readmore {
            color: #fff;
            font-weight: 600;
            display: inline-block;
            transition: 0.3s ease-in-out;
            border-bottom: #ffc907 solid 2px;
        }

            #why-com .card .readmore:hover {
                border-bottom: #fff solid 2px;
            }

@media screen and (max-width: 912px) {
    #why-com .card {
        margin: 15px 15px;
    }
}


.loged {
    padding: 20px;
    /* border: 1px solid brown; */
    background: brown;
    border-radius: 20px 20px 20px 0px;
    color:white;
}
.reg {
    padding: 20px;
border: 1px solid brown;
background: brown;
border-radius: 20px 20px 20px 20px;
color: white;
}