﻿*,
*:after,
*:before {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-size: 62.5%;
}

@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}

body {
    border-top: 1px solid #222222;
    overflow-x: hidden;
}

/*@media (min-width: 700px) {
	html { font-size: 72.5%; }
}
@media (min-width: 1000px) {
	html { font-size: 82.5%; }
}*/
body {
    color: #002859;
    font-family: 'Open Sans', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    font-size: 1.6em;
    font-weight: 300;
    letter-spacing: .01em;
    line-height: 1.6;
}

b,
strong {
    font-weight: 700;
    padding: 5px;
    border-radius: 10px;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: -.1rem;
    margin-bottom: 2.0rem;
    margin-top: 0;
}

    h1[id^="h"],
    h1[id^="p"],
    h1[id^="l"],
    h1[id^="f"],
    h1[id^="t"],
    h1[id^="m"],
    h1[id^="c"] {
        font-size: 3.0rem;
        font-weight: 700;
        text-transform: uppercase;
    }

h1 {
    font-size: 2.6rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.25;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.6rem;
    letter-spacing: -.08rem;
    line-height: 1.35;
    font-weight: 700;
}

h5 {
    font-size: 1.6rem;
    letter-spacing: -.05rem;
    line-height: 1.5;
    font-weight: 700;
    color: #e20077;
}

h6 {
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
}

a {
    color: #007bff;
    text-decoration: none;
}

    a:focus, a:hover {
        color: #2b022c;
    }

blockquote {
    border-left: 0.3rem solid #d1d1d1;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.5rem;
}

    blockquote *:last-child {
        margin-bottom: 0;
    }

.clearfix:after {
    clear: both;
    content: ' ';
    display: table;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-lead {
    font-size: 1.8rem;
}

.text-small {
    font-size: 1.4rem;
}

.text-muted {
    color: #606c76;
}

dl,
ol,
ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

dl,
ol,
ul {
    font-size: 90%;
    margin: 1.5rem 0 1.5rem 3.0rem;
}

ol {
    list-style: decimal inside;
}

ul {
    list-style: circle inside;
}

    ul.list-inline {
        list-style: none;
    }

        ul.list-inline li {
            display: inline-block;
        }

hr {
    border: 0;
    border-top: 0.1rem solid #f4f5f6;
    margin: 3.0rem 0;
}

img {
    /* max-width: 100%; */
}

table {
    border-spacing: 0;
    width: 100%;
}

td,
th {
    border-bottom: 0.1rem solid #e1e1e1;
    padding: 1.2rem 1.5rem;
    text-align: left;
}

    td:first-child,
    th:first-child {
        padding-left: 0;
    }

    td:last-child,
    th:last-child {
        padding-right: 0;
    }

@media screen and (max-width: 40rem) {
    table {
        border-spacing: 0;
        display: flex;
        width: 100%;
    }

        table thead {
            border-right: solid 0.1rem #e1e1e1;
        }

            table thead td,
            table thead th {
                padding-left: 0;
            }

                table thead td:first-child,
                table thead th:first-child {
                    padding-left: 0;
                }

                table thead td:last-child,
                table thead th:last-child {
                    padding-right: 1.2rem;
                }

        table tbody {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
        }

            table tbody tr {
                border-right: solid 0.1rem #e1e1e1;
            }

                table tbody tr:last-child {
                    border-right: none;
                }

        table td,
        table th {
            display: block;
        }

            table td:first-child,
            table th:first-child {
            }

            table td:last-child,
            table th:last-child {
                padding-right: 1.2rem;
            }
}

.button,
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background-color: #9b4dca;
    border: 0.1rem solid #9b4dca;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    height: 3.8rem;
    letter-spacing: .1rem;
    line-height: 3.8rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

    .button:focus, .button:hover,
    button:focus,
    button:hover,
    input[type='button']:focus,
    input[type='button']:hover,
    input[type='reset']:focus,
    input[type='reset']:hover,
    input[type='submit']:focus,
    input[type='submit']:hover {
        background-color: #606c76;
        border-color: #606c76;
        color: #fff;
        outline: 0;
    }

    .button[disabled],
    button[disabled],
    input[type='button'][disabled],
    input[type='reset'][disabled],
    input[type='submit'][disabled] {
        cursor: default;
        opacity: .5;
    }

        .button[disabled]:focus, .button[disabled]:hover,
        button[disabled]:focus,
        button[disabled]:hover,
        input[type='button'][disabled]:focus,
        input[type='button'][disabled]:hover,
        input[type='reset'][disabled]:focus,
        input[type='reset'][disabled]:hover,
        input[type='submit'][disabled]:focus,
        input[type='submit'][disabled]:hover {
            background-color: #9b4dca;
            border-color: #9b4dca;
        }

    .button.button-outline,
    button.button-outline,
    input[type='button'].button-outline,
    input[type='reset'].button-outline,
    input[type='submit'].button-outline {
        background-color: transparent;
        color: #9b4dca;
    }

        .button.button-outline:focus, .button.button-outline:hover,
        button.button-outline:focus,
        button.button-outline:hover,
        input[type='button'].button-outline:focus,
        input[type='button'].button-outline:hover,
        input[type='reset'].button-outline:focus,
        input[type='reset'].button-outline:hover,
        input[type='submit'].button-outline:focus,
        input[type='submit'].button-outline:hover {
            background-color: transparent;
            border-color: #606c76;
            color: #606c76;
        }

        .button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
        button.button-outline[disabled]:focus,
        button.button-outline[disabled]:hover,
        input[type='button'].button-outline[disabled]:focus,
        input[type='button'].button-outline[disabled]:hover,
        input[type='reset'].button-outline[disabled]:focus,
        input[type='reset'].button-outline[disabled]:hover,
        input[type='submit'].button-outline[disabled]:focus,
        input[type='submit'].button-outline[disabled]:hover {
            border-color: inherit;
            color: #9b4dca;
        }

    .button.button-clear,
    button.button-clear,
    input[type='button'].button-clear,
    input[type='reset'].button-clear,
    input[type='submit'].button-clear {
        background-color: transparent;
        border-color: transparent;
        color: #9b4dca;
    }

        .button.button-clear:focus, .button.button-clear:hover,
        button.button-clear:focus,
        button.button-clear:hover,
        input[type='button'].button-clear:focus,
        input[type='button'].button-clear:hover,
        input[type='reset'].button-clear:focus,
        input[type='reset'].button-clear:hover,
        input[type='submit'].button-clear:focus,
        input[type='submit'].button-clear:hover {
            background-color: transparent;
            border-color: transparent;
            color: #606c76;
        }

        .button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
        button.button-clear[disabled]:focus,
        button.button-clear[disabled]:hover,
        input[type='button'].button-clear[disabled]:focus,
        input[type='button'].button-clear[disabled]:hover,
        input[type='reset'].button-clear[disabled]:focus,
        input[type='reset'].button-clear[disabled]:hover,
        input[type='submit'].button-clear[disabled]:focus,
        input[type='submit'].button-clear[disabled]:hover {
            color: #9b4dca;
        }

input[type='email'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='color'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='datetime'],
input[type='datetime-local'],
input:not([type]),
textarea,
select {
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0.1rem solid #d1d1d1;
    border-radius: .4rem;
    box-shadow: none;
    box-sizing: inherit;
    height: 3.8rem;
    padding: .6rem 1.0rem;
    width: 100%;
    font-size: initial;
}

    input[type='email']:focus,
    input[type='number']:focus,
    input[type='password']:focus,
    input[type='search']:focus,
    input[type='tel']:focus,
    input[type='text']:focus,
    input[type='url']:focus,
    input[type='color']:focus,
    input[type='date']:focus,
    input[type='month']:focus,
    input[type='week']:focus,
    input[type='datetime']:focus,
    input[type='datetime-local']:focus,
    input:not([type]):focus,
    textarea:focus,
    select:focus {
        border-color: #9b4dca;
        outline: 0;
    }
/*
select {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%23d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
    padding-right: 3.0rem;
    font-size: small;
}

    select:focus {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%239b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
    }*/

textarea {
    min-height: 6.5rem;
}

label,
legend {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

fieldset {
    border-width: 0;
    padding: 15px;
    font-size: large;
}

input[type='checkbox'],
input[type='radio'] {
    display: none;
}

.label-inline {
    display: inline-block;
    font-weight: 300;
    margin-left: .5rem;
}

/*
* {box-sizing: border-box;}
html {
	font-size: 100%;
}
body {
	font-size: 1rem;
}
*/
.mainpage {
    margin: 0 auto;
    max-width: 1200px;
}

pre {
    background: #e1e1e1;
    padding: 0 1rem;
    white-space: pre-wrap;
    /* css-3 */
    white-space: -moz-pre-wrap;
    /* Mozilla, since 1999 */
    white-space: -pre-wrap;
    /* Opera 4-6 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* Internet Explorer 5.5+ */
}

.mainpage > header {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-navigation {
    display: none;
    text-align: center;
}

a.header-info,
a.header-sponsor {
    display: block;
}

.header-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.shop {
    margin-bottom: 2rem;
}

.header-navigation a {
    padding: 0 1rem;
    color: #002859;
    text-transform: uppercase;
}

.header-navigation img {
    vertical-align: middle;
}

.header-sponsor img {
    display: block;
    margin: 0 auto;
}

@media (min-width: 800px) {
    .header-navigation {
        display: inline-block;
    }
}

.full {
    background: #002859;
    position: relative;
    z-index: 1;
    color: #fff;
}

    .full:before {
        background: #002859;
        content: "";
        position: absolute;
        width: 100vw;
        left: 50%;
        -webkit-transform: translateX(-50vw);
        transform: translateX(-50vw);
        z-index: -1;
        top: 0;
        bottom: 0;
    }

#menu-toggle,
#search-toggle {
    display: block;
}

.js-menu #menu-list {
    display: none;
}

@media (min-width: 800px) {
    #menu-toggle,
    #search-toggle {
        display: none;
    }
}

#menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    #menu-list ul {
        background: #fff;
        display: none;
    }

    #menu-list li li {
        display: block;
    }

@media (min-width: 800px) {
    .js-menu #menu-list {
        display: flex;
        align-items: flex-start;
    }

    #menu-list > li {
        font-size: 1.5rem;
        position: relative;
    }

        #menu-list > li:last-child {
            margin-left: auto;
        }
}

#menu-list a,
#menu-list a:link,
#menu-list a:visited {
    display: block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem;
}

    #menu-list a img,
    #menu-list a svg {
        vertical-align: middle;
    }

    #menu-list a:hover,
    #menu-list a:active,
    #menu-list a:focus {
        background: #e20077;
    }

#menu-list li.dropdown.open > a,
#menu-list li.dropdown > a:active,
#menu-list li.dropdown > a:focus {
    background: #8ec4eb;
}

#menu-list li li a,
#menu-list li li a:link,
#menu-list li li a:visited {
    color: #002859;
    font-weight: 300;
    text-transform: capitalize;
    padding: 0.5rem 1rem;
}

    #menu-list li li a:hover,
    #menu-list li li a:active,
    #menu-list li li a:focus {
        color: #e20077;
        background: transparent;
    }

#menu-list .desk {
    display: none;
}

@media all and (min-width: 800px) {
    #menu-list ul {
        margin: 0;
        position: absolute;
        overflow: visible;
        border: solid 3px #8ec4eb;
    }

    #menu-list li.double ul {
        -webkit-columns: 2;
        columns: 2;
        padding: 1rem 0;
        -webkit-column-rule: 1px solid #8ec4eb;
        column-rule: 1px solid #8ec4eb;
    }

    #menu-list li.double li {
        -webkit-column-break-inside: avoid;
        break-inside: avoid;
    }

    #menu-list li li a,
    #menu-list li li a:link,
    #menu-list li li a:visited {
        white-space: nowrap;
    }

    #menu-list .mob {
        display: none;
    }

    #menu-list .desk {
        display: inline-block;
    }
}
/*

#main-nav {
	margin: 0;
	list-style: none;
}
#main-nav a {
	color: #fff;
	display: block;
	font-weight: 800;
	padding: 0.5rem 1rem;
	border-bottom: 1px solid $brand-secondary;
}
#main-nav a:hover {
	background: $brand-secondary;
	color: $brand-primary;
}

#main-nav ul {
	background: #FFF;
	margin: 0;
}
#main-nav ul a {
	border-bottom: none;
	color: $brand-primary;
}
#main-nav ul a:hover {
	background: transparent;
	color: $brand-highlight;
}










#main-nav .desk {
	display: none;
}
#main-nav .mob a {
	background: $brand-highlight;
}
#main-nav .mob a:hover {
	background: $brand-secondary;
	color: $brand-highlight;
}
#main-nav svg {
	vertical-align: middle;
}
#main-nav svg path {
	fill: #fff;
}
#main-nav .mob a:hover svg path {
	fill: $brand-highlight;
}


nav > a img {vertical-align: middle;}
*/
main {
    min-height: 200px;
}

.grid {
    text-align: center;
}

    .grid [class^="col"] {
        display: block;
    }

@media (min-width: 800px) {
    .grid {
        display: flex;
    }
}

footer .full {
    padding: 1rem 0;
    margin-bottom: 1rem;
}

    footer .full img {
        vertical-align: middle;
    }

    footer .full a {
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
    }

footer ul.social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 800px) {
    footer .grid {
        align-items: center;
    }

    footer ul.social a {
        margin-left: 1rem;
    }
}

@media (min-width: 800px) {
    footer .grid {
        justify-content: space-between;
    }
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}

.top-header {
    background: whitesmoke;
    height: 54px;
    background-image: linear-gradient( to right, orange, orangered 25%, skyblue 25%, deepskyblue 50%, firebrick 50%, firebrick 75%, green 75%);
    background-size: 100% 6px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}

.centered {
    font-size: 19px;
    border: 3px solid #FFC107;
    color: #fff;
    border-radius: 1px;
    background-color: #FFC107;
    max-width: 100%;
    margin: 0 auto;
}

    .centered p {
        margin: 0 0 0px 0;
        font-size: 17px;
        line-height: 28px;
        color: #130000;
        text-align: center;
    }

.cback {
    width: 160px;
    height: 160px;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.cback-circle {
    width: 100%;
    height: 100%;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.cback-circle--phone {
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cback-circle.fn1 {
    -webkit-animation: pin 2.5s linear .4s infinite normal;
    animation: pin 2.5s linear .4s infinite normal;
}

.cback-circle.fn2 {
    -webkit-animation: pin 2s linear 0s infinite normal;
    animation: pin 2s linear 0s infinite normal;
    background: none;
}

.cback:hover .cback-circle--phone {
    -webkit-animation: hvr-phone 1.5s linear infinite normal;
    animation: hvr-phone 1.5s linear infinite normal;
}

@-webkit-keyframes phone-fn {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
    }

    100%,50% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
    }
}

@keyframes phone-fn {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
    }

    100%,50% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
        transform: translate(-50%, -50%) rotate(0deg) scale(1) skew(1deg);
    }
}

@-webkit-keyframes pin {
    0% {
        opacity: .6;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pin {
    0% {
        opacity: .6;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes hvr-phone {
    0%, 100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        box-shadow: inset 0 0 20px -14px rgba(0, 0, 0, 0.75);
    }

    80% {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: inset 0 0 20px -4px rgba(0, 0, 0, 0.75);
    }
}

@keyframes hvr-phone {
    0%, 100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        box-shadow: inset 0 0 20px -14px rgba(0, 0, 0, 0.75);
    }

    80% {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: inset 0 0 20px -4px rgba(0, 0, 0, 0.75);
    }
}

ul.social {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

    ul.social > li {
        display: inline-block;
    }

        ul.social > li > a {
            display: inline-block;
            font-size: 15px;
            line-height: 30px;
            border-radius: 1px;
            color: #fff;
            font-weight: 700;
            background: linear-gradient(to right, #185a9d, #000000);
        }

            ul.social > li > a:hover {
                text-decoration: none;
                background-color: #40c5a2;
            }



/*SRO BHOPAL*/
.card::after {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: calc(100% - 40px);
    height: 35px;
    background-color: #fff;
    -webkit-box-shadow: 0 19px 28px 5px rgba(64,64,64,0.09);
    box-shadow: 0 19px 28px 5px rgba(64,64,64,0.09);
    content: '';
    z-index: -1;
}

a.card {
    text-decoration: none;
}

.card {
    position: relative;
    border: 0;
    border-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09);
    box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09);
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem;
}

.box-shadow {
    -webkit-box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09) !important;
    box-shadow: 0 12px 20px 1px rgba(64,64,64,0.09) !important;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

.mr-auto, .mx-auto {
    margin-right: auto !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.bg-white {
    background-color: #fff !important;
}

.ml-auto, .mx-auto {
    margin-left: auto !important;
}

.mr-auto, .mx-auto {
    margin-right: auto !important;
}

.d-block {
    display: block !important;
}

img, figure {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.card-text {
    padding-top: 12px;
    color: #8c8c8c;
}

.text-sm {
    font-size: 12px !important;
}

p, .p {
    margin: 0 0 16px;
}

.card-title {
    margin: 0;
    font-family: "Montserrat",sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.pt-1, .py-1 {
    padding-top: .25rem !important;
}

.head-icon {
    margin-top: 18px;
    color: #FF4500
}

/*Civil services*/

/* Feature Box
---------------------*/
.feature-box-1 {
    padding: 32px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
    margin: 15px 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    top: 0;
}

    .feature-box-1 * {
        -moz-transition: ease all 0.35s;
        -o-transition: ease all 0.35s;
        -webkit-transition: ease all 0.35s;
        transition: ease all 0.35s;
    }

    .feature-box-1 .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        background: #efff6b;
        color: #ffffff;
        text-align: center;
        border-radius: 50%;
        margin-bottom: 22px;
        font-size: 27px;
    }

        .feature-box-1 .icon i {
            line-height: 70px;
        }

    .feature-box-1 h5 {
        color: #20247b;
        font-weight: 600;
    }

    .feature-box-1 p {
        margin: 0;
    }

    .feature-box-1:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        border-radius: 10px;
        width: 0;
        background: #20247b;
        z-index: -1;
        -moz-transition: ease all 0.35s;
        -o-transition: ease all 0.35s;
        -webkit-transition: ease all 0.35s;
        transition: ease all 0.35s;
    }

    .feature-box-1:hover {
        top: -5px;
    }

        .feature-box-1:hover h5 {
            color: #ffffff;
        }

        .feature-box-1:hover p {
            color: rgba(255, 255, 255, 0.8);
        }

        .feature-box-1:hover:after {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            left: 0;
            right: auto;
        }

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    padding-bottom: 45px;
}

    .section-title h2 {
        font-weight: 700;
        color: #20247b;
        font-size: 35px;
        margin: 0px 0 10px;
        border-left: 5px solid #fc5356;
        padding-left: 15px;
        line-height: 50px;
    }

/*About us*/
@media (max-width: 991px) {
    .about-text {
        margin-top: 40px;
    }
}

.about-text h3 {
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 10px;
}

@media (max-width: 767px) {
    .about-text h3 {
        font-size: 35px;
    }
}

.about-text h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .about-text h4 {
        font-size: 18px;
    }
}

.about-text p {
    font-size: 18px;
}

    .about-text p mark {
        font-weight: 600;
        color: #3a3973;
    }

.about-text .btn-bar {
    padding-top: 8px;
}

    .about-text .btn-bar a {
        min-width: 150px;
        text-align: center;
        margin-right: 10px;
    }

.about-list {
    padding-top: 10px;
}

    .about-list .media {
        padding: 5px 0;
    }

    .about-list label {
        color: #3a3973;
        font-weight: 600;
        width: 88px;
        margin: 0;
        position: relative;
    }

        .about-list label:after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 11px;
            width: 1px;
            height: 12px;
            background: #3a3973;
            -moz-transform: rotate(15deg);
            -o-transform: rotate(15deg);
            -ms-transform: rotate(15deg);
            -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
            margin: auto;
            opacity: 0.5;
        }

    .about-list p {
        margin: 0;
        font-size: 15px;
    }

.about-img {
    box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.06);
    padding: 10px;
    background: #ffffff;
}

@media (max-width: 991px) {
    .about-img {
        margin-top: 30px;
    }
}

.counter-section {
    padding: 40px 20px;
}

    .counter-section .count-data {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .counter-section .count {
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 10px;
    }

    .counter-section p {
        font-weight: 500;
        margin: 0;
        color: #fe4f6c;
    }

.theme-color {
    color: #fe4f6c;
}

.section {
    padding: 100px 0;
    position: relative;
}

.gray-bg {
    background-color: #ebf4fa;
}

.px-btn.theme {
    background: #fe4f6c;
    color: #ffffff;
    border: 2px solid #fe4f6c;
}

.px-btn {
    padding: 0 20px;
    line-height: 42px;
    border: 2px solid transparent;
    position: relative;
    display: inline-block;
    background: none;
    border: none;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

    .px-btn.theme-t {
        background: transparent;
        border: 2px solid #fe4f6c;
        color: #fe4f6c;
    }
