/* CSS Document */


/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600');
@import url('http://fonts.googleapis.com/css?family=Roboto:400italic,400,700');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&family=Montserrat:wght@300;400;500&display=swap');

/* End Fonts */

:root {
    --color-alert-primary: #004085;
    --bg-alert-primary: #cce5ff;
    --border-alert-primary: #b8daff;
    --color-alert-success: #155724;
    --bg-alert-success: #d4edda;
    --border-alert-success: #c3e6cb;
    --color-danger: #721c24;
    --bg-danger: #f8d7da;
    --border-color-danger: #f5c6cb;
    --color-warning: #856404;
    --bg-warning: #fff3cd;
    --border-color-warning: #ffeeba;
}


/* Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
form {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
textarea {
    overflow: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em,
i {
    font-style: italic;
}

b,
strong {
    font-weight: bold;
}

input,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

input[type='button'],
input[type='submit'] {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}


/* End Reset */


/* General Styles */

body {
    font: 16px 'Roboto', Verdana, Geneva, sans-serif;
    color: #333;
    background: #fff;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

.clear {
    clear: both;
    display: block;
    height: 0;
}

a {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.button {
    display: inline-block;
    color: #fff;
    border: 3px solid #0194d7;
    background: #0194d7;
    line-height: 19px;
    margin: 0 5px;
    padding: 10px 15px;
    letter-spacing: 0px;
    font-weight: bold;
    font-size: 13px;
    border-radius: 25px;
    text-transform: uppercase;
}

.button.submit {
    border-color: #b11d8a;
    background: #b11d8a;
}

.button:hover {
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    margin-bottom: 25px;
}

h2 {
    font-size: 34px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

h3 {
    font-size: 24px;
    border-left: 5px solid #0d9dda;
    padding-left: 15px;
    background: #fafafa;
    padding: 10px 15px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    border-left: 3px solid #b11d8a;
    padding-left: 15px;
    margin-bottom: 20px;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* End General Styles */


/* Header */

body {}

#bg-header {
    display: none;
    width: 100%;
    padding: 30px 0;
    background: #00034f;
    background: -moz-radial-gradient( center, ellipse cover, #00034f 0%, #000000 100%);
    background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%, #00034f), color-stop(100%, #000000));
    background: -webkit-radial-gradient( center, ellipse cover, #00034f 0%, #000000 100%);
    background: -o-radial-gradient( center, ellipse cover, #00034f 0%, #000000 100%);
    background: -ms-radial-gradient( center, ellipse cover, #00034f 0%, #000000 100%);
    background: radial-gradient(ellipse at center, #00034f 0%, #000000 100%);
}

.alert {
    padding: 20px 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-alert-primary);
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 0;
    color: var(--color-alert-primary);
    background-color: var(--bg-alert-primary);
    margin-bottom: 20px;
}

.alert hr {
    border: 0;
    border-bottom: 1px solid var(--bg-alert-primary);
}

.alert h4 {
    margin-top: 0;
    color: var(--color-heading);
    border-left: 0;
    padding-left: 0;
}

.alert p {
    color: var(--color-text);
}

.alert.alert-primary {
    color: var(--color-alert-primary);
    background-color: var(--bg-alert-primary);
    border-color: var(--border-alert-primary);
}

.alert.alert-primary h4 {
    color: var(--color-alert-primary);
}

.alert.alert-primary p,
.alert.alert-primary a {
    color: var(--color-alert-primary);
}

.alert.alert-primary hr {
    border-bottom: 1px solid #9fcdff;
}

.alert.alert-success {
    color: var(--color-alert-success);
    background-color: var(--bg-alert-success);
    border-color: var(--border-alert-success);
}

.alert.alert-success h4 {
    color: var(--color-alert-success);
}

.alert.alert-success p,
.alert.alert-success a {
    color: var(--color-alert-success);
}

.alert.alert-success hr {
    border-bottom: 1px solid #b1dfbb;
}

.alert.alert-danger {
    color: var(--color-danger);
    background-color: var(--bg-danger);
    border-color: var(--border-color-danger);
}

.alert.alert-danger h4 {
    color: var(--color-danger);
}

.alert.alert-danger p,
.alert.alert-danger a {
    color: var(--color-danger);
}

.alert.alert-danger hr {
    border-bottom: 1px solid #f1b0b7;
}

.alert.alert-warning {
    color: var(--color-warning);
    background-color: var(--bg-warning);
    border-color: var(--border-color-warning);
}

.alert.alert-warning h4 {
    color: var(--color-warning);
}

.alert.alert-warning p,
.alert.alert-warning a {
    color: var(--color-warning);
}

.alert.alert-warning hr {
    border-bottom: 1px solid #ffe8a1;
}

#bg-header div.border-top {
    width: 100%;
    height: 2px;
}

#header {
    width: 800px;
    margin: 0 auto;
}

#header .logo {
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

#header h1 a {
    display: block;
    width: 285px;
    height: 117px;
    background: url(../images/logo2.png) no-repeat;
    text-indent: -9999px;
}

#header h2 {
    font: 16px 'Ubuntu';
    color: #fff;
    margin-top: 40px;
    float: right;
}

#header h2 span {
    display: block;
    text-align: right;
    font: 10px 'Open Sans';
    color: #999;
}


/* End Header */


/* Content */

div.content {
    padding-left: 390px;
    background: #fff;
    position: relative;
}

div.panes {
    max-width: 1400px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 40px;
}

.section {
    padding-top: 40px;
}


/* End Content */


/* Sidebar */

#sidebar {
    width: 390px;
    float: left;
    background: #182530;
    color: #fff;
    box-sizing: border-box;
    padding: 20px;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
}

#sidebar .logo {
    display: block;
    max-width: 200px;
    margin: 20px auto;
}

#sidebar h1 {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
}

#sidebar nav ul {
    counter-reset: number;
}

#sidebar nav ul li {
    margin-top: 10px;
}

#sidebar nav ul li a {
    display: block;
    padding: 10px 20px 10px 30px;
    font-size: 16px;
    color: #fff;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    position: relative;
}

#sidebar nav ul li a::before {
    position: absolute;
    left: 5px;
    top: 10px;
    content: counters(number, '.') '.';
    counter-increment: number;
}

#sidebar nav ul li.has-submenu a:after {
    content: '';
    border: solid;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#sidebar nav ul li.no-submenu a:after {
    display: none;
    transform: rotate(-45deg) !important;
}

#sidebar nav ul li.opened a:after {
    transform: rotate(45deg);
}

#sidebar nav li.opened>a,
#sidebar nav>ul>li.active a,
#sidebar nav ul li a:hover {
    background: #2a3d4b;
}

#sidebar nav ul li a span {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#sidebar nav ul li a:hover,
#sidebar nav ul li.active>a {
    opacity: 1;
}

#sidebar nav ul.submenu {
    visibility: hidden;
    padding-left: 25px;
    padding-top: 5px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

#sidebar nav li.opened ul.submenu {
    opacity: 1;
    visibility: visible;
    height: auto;
}

#sidebar nav ul.submenu li {
    margin-top: 5px;
}

#sidebar nav ul.submenu li a {
    font-size: 13px;
    padding: 7px 15px 7px 25px;
    background: none;
}

#sidebar nav ul.submenu li a:before {
    top: 6px;
    left: 0;
}

#sidebar nav ul.submenu li a:hover,
#sidebar nav ul.submenu li.active a {
    opacity: 1;
    background: none;
}

#sidebar nav ul.submenu li a:after {
    display: none;
}

#sidebar div.buttons {
    margin: 20px 0;
}


/* End Sidebar */


/* Texts */

.section ol {
    margin-bottom: 20px;
}

.section ol li {
    padding-bottom: 5px;
}

div.text {
    line-height: 1.6;
}

div.text img {
    border: 1px solid #0194d7;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
    margin: 10px 0;
}

div.text a {
    color: #0194d7;
    position: relative;
    z-index: 1;
}

div.text a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    border-bottom: 1px solid #0194d7;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

div.text a:hover:before {
    opacity: 1;
    width: 100%;
}

div.text p,
div.text ul {
    margin-bottom: 25px;
}

div.text ul,
div.text ol {
    margin-left: 20px;
}

div.text ul li {
    list-style: inside;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

div.text ul li ul {
    margin: 0;
    padding: 5px 0 0 25px;
}

div.text ul li:before {
    display: none;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 3px;
    background: #555;
    transform: translateY(-50%);
}

div.text ul li>ul {
    margin-top: 0;
}

.dropdawn .comon-drop-style p {
    margin: 10px 0px 10px 20px;
    display: inline-block;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    font-size: 17px;
    position: relative;
}

.dropdawn .comon-drop-style p:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b11d8a;
}

div.text ul li em {
    display: inline-block;
    color: #555;
    background: #fafafa;
    padding: 4px 7px;
    border: 1px solid #ddd;
    font-style: normal;
}

div.text pre {
    font: 12px/1.6 Monaco, monospace;
    margin-bottom: 20px;
    background: #f7f7f9;
    color: #666;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    overflow: hidden;
}

div.text code {
    font: 14px/1.6 Monaco, monospace;
    background: #f7f7f9;
    color: #666;
    border: 1px solid #ddd;
    padding: 2px 10px;
}

.warning {
    font-size: 18px;
    padding-left: 15px;
    border-left: 5px solid #ffaf29;
    padding: 40px 15px 10px;
    margin-bottom: 20px;
    position: relative;
    background-color: #fafafa;
    font-size: 16px;
}

.warning:before {
    position: absolute;
    left: 0;
    top: 0;
    content: 'warning';
    background-color: #ffaf29;
    padding: 2px 15px;
    font-size: 12px;
    width: 100%;
    box-sizing: border-box;
}

table {
    width: 50%;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:nth-child(odd) {
    background-color: #fff;
}

table th {
    text-align: left;
    padding: 10px 15px;
    font-weight: 700;
}

table td {
    padding: 10px 15px;
}

.section pre {
    padding: 20px 25px;
}


/* End Texts */


/* Footer */

#footer {
    margin: 80px 0;
    padding: 25px;
    padding-left: 390px;
    text-align: center;
    border-top: 1px solid #ddd;
}

#footer a {
    font: 20px 'Raleway';
    font-weight: 500;
    color: #555;
}

#footer a:hover {
    color: #222;
}

.mobile-menu-bar {
    position: fixed;
    left: 5px;
    top: 5px;
    display: none;
    cursor: pointer;
}

.mobile-menu-bar span {
    width: 25px;
    height: 3px;
    margin: 5px 0;
    display: block;
    background-color: #000;
}

.color {
    color: #b11d8a;
}

.show-grid [class^=col-],
.show-grid [class^=col_] {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #f7f7f9;
    border: 1px solid rgb(238, 238, 238);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.show-grid [class^=col_] {
    padding: 10px 15px;
    margin-bottom: 20px;
}

.banner-section {
    padding: 80px 50px;
    background-color: #1e2f3e;
}

.banner-section h2 {
    color: #fafafa;
    border-bottom: 0px;
    font-size: 45px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.banner-section h2 span {
    font-size: 40px;
    font-weight: 300;
    display: inline-block;
}

ol li code,
ul li code {
    display: inline-block;
    margin-bottom: 15px;
}

.pl-15 {
    padding-left: 20px;
}

.pb-15 {
    padding-bottom: 20px;
}

.d-block {
    display: block;
}

.text-18 {
    font-size: 18px;
}

div pre code {
    border: none !important;
    background-color: transparent !important;
}

.information-wrapper {
    padding: 25px 15px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.information-wrapper h4 {
    font-size: 22px;
    border-left: none;
    padding-left: 0px;
    margin-bottom: 15px;
}

.information-wrapper ul li {
    margin-bottom: 5px;
    list-style-type: none !important;
}

.information-wrapper ul {
    list-style-type: none;
}


/* End Footer */

@media screen and (max-width: 1200px) {
    h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    #sidebar {
        width: 300px;
    }
    div.content {
        padding-left: 300px;
    }
    #sidebar div.buttons {
        text-align: center;
    }
    #sidebar div.buttons .button {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 800px) {
    #sidebar {
        left: -300px;
        transition: left 0.3s ease-in-out;
    }
    #sidebar.show {
        left: 0;
    }
    div.content {
        padding-left: 0;
    }
    .mobile-menu-bar {
        display: block;
        transition: left 0.3s ease-in-out;
    }
    .active .mobile-menu-bar {
        left: 305px;
    }
    body {
        transition: left 0.3s ease-in-out;
        position: relative;
        left: 0;
    }
    body.active {
        left: 300px;
        overflow: hidden;
    }
}
.thum-img img{
    border: none !important;
}