/* loader.css */
.loader { width: 100%; height: 100%; top: 0; left: 0; position: fixed; display: flex; justify-content: center; align-items: center; z-index: 1050; background-color: #fff; } .loader::before { content: ""; position: absolute; width: 80px; height: 80px; margin: 0 auto; left: 0; right: 0; border: 4px solid; border-color: #0039b3 #0039b3 transparent; border-radius: 50%; animation: spin 1s ease infinite; } @keyframes spin {to {transform: rotate(360deg);}} .img-load { width: 70px; height: 70px; position: relative; margin: 0 auto; vertical-align: middle; }
/* flex-grid.css */
 *, ::after, ::before { box-sizing: border-box; } html { width: 100%; overflow-x: hidden; } body { font-family: "Roboto", sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #000000; -webkit-text-size-adjust: 100%; margin: 0; } svg { vertical-align: middle; } h1,h2,h3,h4 { margin: 0; } a { text-decoration: none; } p { margin: 0; } ul { margin: 0; padding: 0; } ul li { list-style-type: none; } .container, .nav-container, .promo-container { width: 100%; padding-left: .75rem; padding-right: .75rem; margin-right: auto; margin-left: auto; } .pos-relative { position: relative; } .flex-wrap { flex-wrap: wrap; } .w100 { width: 100%; } .h100 { height: 100%; } .d-flex, .menu-row { display: flex; } .d-block { display: block; } .mx-auto { margin-left: auto; margin-right: auto; } .flex-colm { flex-direction: column; } .jc-start { justify-content: start; } .jc-end { justify-content: end; } .jc-center { justify-content: center; } .jc-sb { justify-content: space-between; } .ai-center { align-items: center; } .ai-end { align-items: end; } .text-center { text-align: center; } .text-start { text-align: left; } .text-end { text-align: right; } .text-blue { color: #1172BA; } .text-dark { color: #000000; } .text-white { color: #ffffff; } .fw-100 { font-weight: 100; } .fw-400 { font-weight: 400; } .fw-500 { font-weight: 500; } .fw-600 { font-weight: 600; } .fw-800 { font-weight: 800; } button { border: 0; border-radius: 15px; padding: 8px 15px; } .cta-btn { font-weight: 500; font-size: 16px; border-radius: 20px; background-color: #005A8C; color: #fff; } .cta-btn:hover { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); background-color: #0675b0; } .icon-vx-gap { gap: 10px; } .vy-gap { padding-top: 40px; padding-bottom: 40px; } .content-vy-gap { padding: 30px 0; } .content-top-gap { padding-top: 30px; } .content-bottom-gap { padding-bottom: 30px; } .col3-flex-box { gap: 18px; flex-wrap: wrap; } .col4-flex-box { gap: 20px; flex-wrap: wrap; } .col2,.col3,.col4,.col5{ width: 100%; } .row-gap { gap: 16px; } @media (min-width: 520px) { .col4 { width: calc(100% / 2 - 15px); } .col5 { width: calc(100% / 2 - 16px); } } @media (min-width: 576px) { .container { max-width: 540px; } } @media (min-width: 768px) { .container { max-width: 720px; } .col5 { width: calc(100% / 3 - 16px); } .jc-md-sb { justify-content: space-between; } } @media (min-width: 992px) { .container { max-width: 960px; } .col2,.col3 { width: calc(100% / 2 - 18px); } .col4 { width: calc(100% / 3 - 16px); } .col5 { width: calc(100% / 5 - 16px); } .text-lg-end { text-align: right; } } @media (min-width: 1024px) { .col3 { width: calc(100% / 2 - 18px); } } @media (min-width: 1200px) { .container { max-width: 1140px; } .col3 { width: calc(100% / 3 - 18px); } .col4 { width: calc(100% / 4 - 16px); } .jc-lg-sb { justify-content: space-between; } } @media (min-width: 1400px) { .nav-container, .promo-container { max-width: 1366px; } } @media (max-width: 1080px) { .menu-row { flex-direction: column; } } @media (max-width: 767px) { .vy-gap { padding-top: 30px; padding-bottom: 30px; } } 
/* bootstrap-grid.css */
 *, *::before, *::after { box-sizing: border-box; } p { margin-top: 0; margin-bottom: 1rem; } dl, ol, ul { margin: 0; } .container,.container-fluid{ width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto; } .container{max-width:1140px} .row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px} .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; } .col{flex-basis:0;flex-grow:1;max-width:100%} .col-1{flex:0 0 8.333333%;max-width:8.333333%} .col-2{flex:0 0 16.666667%;max-width:16.666667%} .col-3{flex:0 0 25%;max-width:25%} .col-4{flex:0 0 33.333333%;max-width:33.333333%} .col-5{flex:0 0 41.666667%;max-width:41.666667%} .col-6{flex:0 0 50%;max-width:50%} .col-7{flex:0 0 58.333333%;max-width:58.333333%} .col-8{flex:0 0 66.666667%;max-width:66.666667%} .col-9{flex:0 0 75%;max-width:75%} .col-10{flex:0 0 83.333333%;max-width:83.333333%} .col-11{flex:0 0 91.666667%;max-width:91.666667%} .col-12{flex:0 0 100%;max-width:100%} .offset-1{margin-left:8.333333%} .offset-2{margin-left:16.666667%} .offset-3{margin-left:25%} .offset-4{margin-left:33.333333%} .offset-5{margin-left:41.666667%} .offset-6{margin-left:50%} .offset-7{margin-left:58.333333%} .offset-8{margin-left:66.666667%} .offset-9{margin-left:75%} .offset-10{margin-left:83.333333%} .offset-11{margin-left:91.666667%} .m-0{margin:0!important} .m-1{margin:.25rem!important} .m-2{margin:.5rem!important} .m-3{margin:1rem!important} .m-4{margin:1.5rem!important} .m-5{margin:3rem!important} .mx-0{margin-left:0!important;margin-right:0!important} .mx-1{margin-left:.25rem!important;margin-right:.25rem!important} .mx-2{margin-left:.5rem!important;margin-right:.5rem!important} .mx-3{margin-left:1rem!important;margin-right:1rem!important} .mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important} .mx-5{margin-left:3rem!important;margin-right:3rem!important} .my-0{margin-top:0!important;margin-bottom:0!important} .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important} .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important} .my-3{margin-top:1rem!important;margin-bottom:1rem!important} .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important} .my-5{margin-top:3rem!important;margin-bottom:3rem!important} .p-0{padding:0!important} .p-1{padding:.25rem!important} .p-2{padding:.5rem!important} .p-3{padding:1rem!important} .p-4{padding:1.5rem!important} .p-5{padding:3rem!important} .px-0{padding-left:0!important;padding-right:0!important} .px-1{padding-left:.25rem!important;padding-right:.25rem!important} .px-2{padding-left:.5rem!important;padding-right:.5rem!important} .px-3{padding-left:1rem!important;padding-right:1rem!important} .px-4{padding-left:1.5rem!important;padding-right:1.5rem!important} .px-5{padding-left:3rem!important;padding-right:3rem!important} .py-0{padding-top:0!important;padding-bottom:0!important} .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important} .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important} .py-3{padding-top:1rem!important;padding-bottom:1rem!important} .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important} .py-5{padding-top:3rem!important;padding-bottom:3rem!important} .mx-auto{margin-left:auto!important;margin-right:auto!important} .my-auto{margin-top:auto!important;margin-bottom:auto!important} .mt-auto{margin-top:auto!important}.mr-auto{margin-right:auto!important} .mb-auto{margin-bottom:auto!important}.ml-auto{margin-left:auto!important} .w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important} .h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important} .mw-100{max-width:100%!important}.mh-100{max-height:100%!important} .float-left {float: left;} .form-control { display: block; width: 100%; height: calc(1.5em + .75rem + 2px); padding: .375rem .75rem; padding-left: 0.75rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #495057; background-color: #fff; background-clip: padding-box; border: 1px solid #ced4da; border-radius: .25rem; transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; } .border { border: 1px solid rgb(222, 226, 230) !important; } .border-primary { border-color: #007bff !important; } .d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important} .d-block{display:block!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important} .flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important} .flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important} .flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important} .justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important} .justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important} .justify-content-around{justify-content:space-around!important} .align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important} .align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important} .align-items-stretch{align-items:stretch!important} .align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important} .align-self-center{align-self:center!important}.align-self-stretch{align-self:stretch!important} .flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important} .flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important} .position-static{position:static!important}.position-relative{position:relative!important} .position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important} .overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important} .text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important} .m-0{margin:0!important} .mt-0{margin-top:0!important} .mr-0{margin-right:0!important} .mb-0{margin-bottom:0!important} .ml-0{margin-left:0!important} .mx-0{margin-left:0!important;margin-right:0!important} .my-0{margin-top:0!important;margin-bottom:0!important} .m-1{margin:.25rem!important} .mt-1{margin-top:.25rem!important} .mr-1{margin-right:.25rem!important} .mb-1{margin-bottom:.25rem!important} .ml-1{margin-left:.25rem!important} .mx-1{margin-left:.25rem!important;margin-right:.25rem!important} .my-1{margin-top:.25rem!important;margin-bottom:.25rem!important} .m-2{margin:.5rem!important} .mt-2{margin-top:.5rem!important} .mr-2{margin-right:.5rem!important} .mb-2{margin-bottom:.5rem!important} .ml-2{margin-left:.5rem!important} .mx-2{margin-left:.5rem!important;margin-right:.5rem!important} .my-2{margin-top:.5rem!important;margin-bottom:.5rem!important} .m-3{margin:1rem!important} .mt-3{margin-top:1rem!important} .mr-3{margin-right:1rem!important} .mb-3{margin-bottom:1rem!important} .ml-3{margin-left:1rem!important} .mx-3{margin-left:1rem!important;margin-right:1rem!important} .my-3{margin-top:1rem!important;margin-bottom:1rem!important} .m-4{margin:1.5rem!important} .mt-4{margin-top:1.5rem!important} .mr-4{margin-right:1.5rem!important} .mb-4{margin-bottom:1.5rem!important} .ml-4{margin-left:1.5rem!important} .mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important} .my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important} .m-5{margin:3rem!important} .mt-5{margin-top:3rem!important} .mr-5{margin-right:3rem!important} .mb-5{margin-bottom:3rem!important} .ml-5{margin-left:3rem!important} .mx-5{margin-left:3rem!important;margin-right:3rem!important} .my-5{margin-top:3rem!important;margin-bottom:3rem!important} .p-0{padding:0!important} .pt-0{padding-top:0!important} .pr-0{padding-right:0!important} .pb-0{padding-bottom:0!important} .pl-0{padding-left:0!important} .px-0{padding-left:0!important;padding-right:0!important} .py-0{padding-top:0!important;padding-bottom:0!important} .p-1{padding:.25rem!important} .pt-1{padding-top:.25rem!important} .pr-1{padding-right:.25rem!important} .pb-1{padding-bottom:.25rem!important} .pl-1{padding-left:.25rem!important} .px-1{padding-left:.25rem!important;padding-right:.25rem!important} .py-1{padding-top:.25rem!important;padding-bottom:.25rem!important} .p-2{padding:.5rem!important} .pt-2{padding-top:.5rem!important} .pr-2{padding-right:.5rem!important} .pb-2{padding-bottom:.5rem!important} .pl-2{padding-left:.5rem!important} .px-2{padding-left:.5rem!important;padding-right:.5rem!important} .py-2{padding-top:.5rem!important;padding-bottom:.5rem!important} .p-3{padding:1rem!important} .pt-3{padding-top:1rem!important} .pr-3{padding-right:1rem!important} .pb-3{padding-bottom:1rem!important} .pl-3{padding-left:1rem!important} .px-3{padding-left:1rem!important;padding-right:1rem!important} .py-3{padding-top:1rem!important;padding-bottom:1rem!important} .p-4{padding:1.5rem!important} .pt-4{padding-top:1.5rem!important} .pr-4{padding-right:1.5rem!important} .pb-4{padding-bottom:1.5rem!important} .pl-4{padding-left:1.5rem!important} .px-4{padding-left:1.5rem!important;padding-right:1.5rem!important} .py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important} .p-5{padding:3rem!important} .pt-5{padding-top:3rem!important} .pr-5{padding-right:3rem!important} .pb-5{padding-bottom:3rem!important} .pl-5{padding-left:3rem!important} .px-5{padding-left:3rem!important;padding-right:3rem!important} .py-5{padding-top:3rem!important;padding-bottom:3rem!important} @media (min-width:576px){ .container{max-width:540px} .col-sm{flex-basis:0;flex-grow:1;max-width:100%} .col-sm-1{flex:0 0 8.333333%;max-width:8.333333%} .col-sm-2{flex:0 0 16.666667%;max-width:16.666667%} .col-sm-3{flex:0 0 25%;max-width:25%} .col-sm-4{flex:0 0 33.333333%;max-width:33.333333%} .col-sm-5{flex:0 0 41.666667%;max-width:41.666667%} .col-sm-6{flex:0 0 50%;max-width:50%} .col-sm-7{flex:0 0 58.333333%;max-width:58.333333%} .col-sm-8{flex:0 0 66.666667%;max-width:66.666667%} .col-sm-9{flex:0 0 75%;max-width:75%} .col-sm-10{flex:0 0 83.333333%;max-width:83.333333%} .col-sm-11{flex:0 0 91.666667%;max-width:91.666667%} .col-sm-12{flex:0 0 100%;max-width:100%} .offset-sm-1{margin-left:8.333333%} .offset-sm-2{margin-left:16.666667%} .offset-sm-3{margin-left:25%} .offset-sm-4{margin-left:33.333333%} .offset-sm-5{margin-left:41.666667%} .offset-sm-6{margin-left:50%} .offset-sm-7{margin-left:58.333333%} .offset-sm-8{margin-left:66.666667%} .offset-sm-9{margin-left:75%} .offset-sm-10{margin-left:83.333333%} .offset-sm-11{margin-left:91.666667%} .mt-sm-0{margin-top:0!important} .mr-sm-0{margin-right:0!important} .mb-sm-0{margin-bottom:0!important} .ml-sm-0{margin-left:0!important} .m-sm-0{margin:0!important} .mx-sm-0{margin-left:0!important;margin-right:0!important} .my-sm-0{margin-top:0!important;margin-bottom:0!important} .mt-sm-1{margin-top:.25rem!important} .mr-sm-1{margin-right:.25rem!important} .mb-sm-1{margin-bottom:.25rem!important} .ml-sm-1{margin-left:.25rem!important} .m-sm-1{margin:.25rem!important} .mx-sm-1{margin-left:.25rem!important;margin-right:.25rem!important} .my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important} .mt-sm-2{margin-top:.5rem!important} .mr-sm-2{margin-right:.5rem!important} .mb-sm-2{margin-bottom:.5rem!important} .ml-sm-2{margin-left:.5rem!important} .m-sm-2{margin:.5rem!important} .mx-sm-2{margin-left:.5rem!important;margin-right:.5rem!important} .my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important} .mt-sm-3{margin-top:1rem!important} .mr-sm-3{margin-right:1rem!important} .mb-sm-3{margin-bottom:1rem!important} .ml-sm-3{margin-left:1rem!important} .m-sm-3{margin:1rem!important} .mx-sm-3{margin-left:1rem!important;margin-right:1rem!important} .my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important} .mt-sm-4{margin-top:1.5rem!important} .mr-sm-4{margin-right:1.5rem!important} .mb-sm-4{margin-bottom:1.5rem!important} .ml-sm-4{margin-left:1.5rem!important} .m-sm-4{margin:1.5rem!important} .mx-sm-4{margin-left:1.5rem!important;margin-right:1.5rem!important} .my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important} .mt-sm-5{margin-top:3rem!important} .mr-sm-5{margin-right:3rem!important} .mb-sm-5{margin-bottom:3rem!important} .ml-sm-5{margin-left:3rem!important} .m-sm-5{margin:3rem!important} .mx-sm-5{margin-left:3rem!important;margin-right:3rem!important} .my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important} .pt-sm-0{padding-top:0!important} .pr-sm-0{padding-right:0!important} .pb-sm-0{padding-bottom:0!important} .pl-sm-0{padding-left:0!important} .p-sm-0{padding:0!important} .px-sm-0{padding-left:0!important;padding-right:0!important} .py-sm-0{padding-top:0!important;padding-bottom:0!important} .pt-sm-1{padding-top:.25rem!important} .pr-sm-1{padding-right:.25rem!important} .pb-sm-1{padding-bottom:.25rem!important} .pl-sm-1{padding-left:.25rem!important} .p-sm-1{padding:.25rem!important} .px-sm-1{padding-left:.25rem!important;padding-right:.25rem!important} .py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important} .pt-sm-2{padding-top:.5rem!important} .pr-sm-2{padding-right:.5rem!important} .pb-sm-2{padding-bottom:.5rem!important} .pl-sm-2{padding-left:.5rem!important} .p-sm-2{padding:.5rem!important} .px-sm-2{padding-left:.5rem!important;padding-right:.5rem!important} .py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important} .pt-sm-3{padding-top:1rem!important} .pr-sm-3{padding-right:1rem!important} .pb-sm-3{padding-bottom:1rem!important} .pl-sm-3{padding-left:1rem!important} .p-sm-3{padding:1rem!important} .px-sm-3{padding-left:1rem!important;padding-right:1rem!important} .py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important} .pt-sm-4{padding-top:1.5rem!important} .pr-sm-4{padding-right:1.5rem!important} .pb-sm-4{padding-bottom:1.5rem!important} .pl-sm-4{padding-left:1.5rem!important} .p-sm-4{padding:1.5rem!important} .px-sm-4{padding-left:1.5rem!important;padding-right:1.5rem!important} .py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important} .pt-sm-5{padding-top:3rem!important} .pr-sm-5{padding-right:3rem!important} .pb-sm-5{padding-bottom:3rem!important} .pl-sm-5{padding-left:3rem!important} .p-sm-5{padding:3rem!important} .px-sm-5{padding-left:3rem!important;padding-right:3rem!important} .py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important} .d-sm-none{display:none!important} .d-sm-inline{display:inline!important} .d-sm-inline-block{display:inline-block!important} .d-sm-block{display:block!important} .d-sm-flex{display:flex!important} } @media (min-width:768px){ .container{max-width:720px} .col-md{flex-basis:0;flex-grow:1;max-width:100%} .col-md-1{flex:0 0 8.333333%;max-width:8.333333%} .col-md-2{flex:0 0 16.666667%;max-width:16.666667%} .col-md-3{flex:0 0 25%;max-width:25%} .col-md-4{flex:0 0 33.333333%;max-width:33.333333%} .col-md-5{flex:0 0 41.666667%;max-width:41.666667%} .col-md-6{flex:0 0 50%;max-width:50%} .col-md-7{flex:0 0 58.333333%;max-width:58.333333%} .col-md-8{flex:0 0 66.666667%;max-width:66.666667%} .col-md-9{flex:0 0 75%;max-width:75%} .col-md-10{flex:0 0 83.333333%;max-width:83.333333%} .col-md-11{flex:0 0 91.666667%;max-width:91.666667%} .col-md-12{flex:0 0 100%;max-width:100%} .offset-md-1{margin-left:8.333333%} .offset-md-2{margin-left:16.666667%} .offset-md-3{margin-left:25%} .offset-md-4{margin-left:33.333333%} .offset-md-5{margin-left:41.666667%} .offset-md-6{margin-left:50%} .offset-md-7{margin-left:58.333333%} .offset-md-8{margin-left:66.666667%} .offset-md-9{margin-left:75%} .offset-md-10{margin-left:83.333333%} .offset-md-11{margin-left:91.666667%} .mt-md-0{margin-top:0!important} .mr-md-0{margin-right:0!important} .mb-md-0{margin-bottom:0!important} .ml-md-0{margin-left:0!important} .m-md-0{margin:0!important} .mx-md-0{margin-left:0!important;margin-right:0!important} .my-md-0{margin-top:0!important;margin-bottom:0!important} .mt-md-1{margin-top:.25rem!important} .mr-md-1{margin-right:.25rem!important} .mb-md-1{margin-bottom:.25rem!important} .ml-md-1{margin-left:.25rem!important} .m-md-1{margin:.25rem!important} .mx-md-1{margin-left:.25rem!important;margin-right:.25rem!important} .my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important} .mt-md-2{margin-top:.5rem!important} .mr-md-2{margin-right:.5rem!important} .mb-md-2{margin-bottom:.5rem!important} .ml-md-2{margin-left:.5rem!important} .m-md-2{margin:.5rem!important} .mx-md-2{margin-left:.5rem!important;margin-right:.5rem!important} .my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important} .mt-md-3{margin-top:1rem!important} .mr-md-3{margin-right:1rem!important} .mb-md-3{margin-bottom:1rem!important} .ml-md-3{margin-left:1rem!important} .m-md-3{margin:1rem!important} .mx-md-3{margin-left:1rem!important;margin-right:1rem!important} .my-md-3{margin-top:1rem!important;margin-bottom:1rem!important} .mt-md-4{margin-top:1.5rem!important} .mr-md-4{margin-right:1.5rem!important} .mb-md-4{margin-bottom:1.5rem!important} .ml-md-4{margin-left:1.5rem!important} .m-md-4{margin:1.5rem!important} .mx-md-4{margin-left:1.5rem!important;margin-right:1.5rem!important} .my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important} .mt-md-5{margin-top:3rem!important} .mr-md-5{margin-right:3rem!important} .mb-md-5{margin-bottom:3rem!important} .ml-md-5{margin-left:3rem!important} .m-md-5{margin:3rem!important} .mx-md-5{margin-left:3rem!important;margin-right:3rem!important} .my-md-5{margin-top:3rem!important;margin-bottom:3rem!important} .pt-md-0{padding-top:0!important} .pr-md-0{padding-right:0!important} .pb-md-0{padding-bottom:0!important} .pl-md-0{padding-left:0!important} .p-md-0{padding:0!important} .px-md-0{padding-left:0!important;padding-right:0!important} .py-md-0{padding-top:0!important;padding-bottom:0!important} .pt-md-1{padding-top:.25rem!important} .pr-md-1{padding-right:.25rem!important} .pb-md-1{padding-bottom:.25rem!important} .pl-md-1{padding-left:.25rem!important} .p-md-1{padding:.25rem!important} .px-md-1{padding-left:.25rem!important;padding-right:.25rem!important} .py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important} .pt-md-2{padding-top:.5rem!important} .pr-md-2{padding-right:.5rem!important} .pb-md-2{padding-bottom:.5rem!important} .pl-md-2{padding-left:.5rem!important} .p-md-2{padding:.5rem!important} .px-md-2{padding-left:.5rem!important;padding-right:.5rem!important} .py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important} .pt-md-3{padding-top:1rem!important} .pr-md-3{padding-right:1rem!important} .pb-md-3{padding-bottom:1rem!important} .pl-md-3{padding-left:1rem!important} .p-md-3{padding:1rem!important} .px-md-3{padding-left:1rem!important;padding-right:1rem!important} .py-md-3{padding-top:1rem!important;padding-bottom:1rem!important} .pt-md-4{padding-top:1.5rem!important} .pr-md-4{padding-right:1.5rem!important} .pb-md-4{padding-bottom:1.5rem!important} .pl-md-4{padding-left:1.5rem!important} .p-md-4{padding:1.5rem!important} .px-md-4{padding-left:1.5rem!important;padding-right:1.5rem!important} .py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important} .pt-md-5{padding-top:3rem!important} .pr-md-5{padding-right:3rem!important} .pb-md-5{padding-bottom:3rem!important} .pl-md-5{padding-left:3rem!important} .p-md-5{padding:3rem!important} .px-md-5{padding-left:3rem!important;padding-right:3rem!important} .py-md-5{padding-top:3rem!important;padding-bottom:3rem!important} .d-md-none{display:none!important} .d-md-inline{display:inline!important} .d-md-inline-block{display:inline-block!important} .d-md-block{display:block!important} .d-md-flex{display:flex!important} } @media (min-width:992px){ .container{max-width:960px} .col-lg{flex-basis:0;flex-grow:1;max-width:100%} .col-lg-1{flex:0 0 8.333333%;max-width:8.333333%} .col-lg-2{flex:0 0 16.666667%;max-width:16.666667%} .col-lg-3{flex:0 0 25%;max-width:25%} .col-lg-4{flex:0 0 33.333333%;max-width:33.333333%} .col-lg-5{flex:0 0 41.666667%;max-width:41.666667%} .col-lg-6{flex:0 0 50%;max-width:50%} .col-lg-7{flex:0 0 58.333333%;max-width:58.333333%} .col-lg-8{flex:0 0 66.666667%;max-width:66.666667%} .col-lg-9{flex:0 0 75%;max-width:75%} .col-lg-10{flex:0 0 83.333333%;max-width:83.333333%} .col-lg-11{flex:0 0 91.666667%;max-width:91.666667%} .col-lg-12{flex:0 0 100%;max-width:100%} .offset-lg-1{margin-left:8.333333%} .offset-lg-2{margin-left:16.666667%} .offset-lg-3{margin-left:25%} .offset-lg-4{margin-left:33.333333%} .offset-lg-5{margin-left:41.666667%} .offset-lg-6{margin-left:50%} .offset-lg-7{margin-left:58.333333%} .offset-lg-8{margin-left:66.666667%} .offset-lg-9{margin-left:75%} .offset-lg-10{margin-left:83.333333%} .offset-lg-11{margin-left:91.666667%} .mt-lg-0{margin-top:0!important} .mr-lg-0{margin-right:0!important} .mb-lg-0{margin-bottom:0!important} .ml-lg-0{margin-left:0!important} .m-lg-0{margin:0!important} .mx-lg-0{margin-left:0!important;margin-right:0!important} .my-lg-0{margin-top:0!important;margin-bottom:0!important} .mt-lg-1{margin-top:.25rem!important} .mr-lg-1{margin-right:.25rem!important} .mb-lg-1{margin-bottom:.25rem!important} .ml-lg-1{margin-left:.25rem!important} .m-lg-1{margin:.25rem!important} .mx-lg-1{margin-left:.25rem!important;margin-right:.25rem!important} .my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important} .mt-lg-2{margin-top:.5rem!important} .mr-lg-2{margin-right:.5rem!important} .mb-lg-2{margin-bottom:.5rem!important} .ml-lg-2{margin-left:.5rem!important} .m-lg-2{margin:.5rem!important} .mx-lg-2{margin-left:.5rem!important;margin-right:.5rem!important} .my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important} .mt-lg-3{margin-top:1rem!important} .mr-lg-3{margin-right:1rem!important} .mb-lg-3{margin-bottom:1rem!important} .ml-lg-3{margin-left:1rem!important} .m-lg-3{margin:1rem!important} .mx-lg-3{margin-left:1rem!important;margin-right:1rem!important} .my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important} .mt-lg-4{margin-top:1.5rem!important} .mr-lg-4{margin-right:1.5rem!important} .mb-lg-4{margin-bottom:1.5rem!important} .ml-lg-4{margin-left:1.5rem!important} .m-lg-4{margin:1.5rem!important} .mx-lg-4{margin-left:1.5rem!important;margin-right:1.5rem!important} .my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important} .mt-lg-5{margin-top:3rem!important} .mr-lg-5{margin-right:3rem!important} .mb-lg-5{margin-bottom:3rem!important} .ml-lg-5{margin-left:3rem!important} .m-lg-5{margin:3rem!important} .mx-lg-5{margin-left:3rem!important;margin-right:3rem!important} .my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important} .pt-lg-0{padding-top:0!important} .pr-lg-0{padding-right:0!important} .pb-lg-0{padding-bottom:0!important} .pl-lg-0{padding-left:0!important} .p-lg-0{padding:0!important} .px-lg-0{padding-left:0!important;padding-right:0!important} .py-lg-0{padding-top:0!important;padding-bottom:0!important} .pt-lg-1{padding-top:.25rem!important} .pr-lg-1{padding-right:.25rem!important} .pb-lg-1{padding-bottom:.25rem!important} .pl-lg-1{padding-left:.25rem!important} .p-lg-1{padding:.25rem!important} .px-lg-1{padding-left:.25rem!important;padding-right:.25rem!important} .py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important} .pt-lg-2{padding-top:.5rem!important} .pr-lg-2{padding-right:.5rem!important} .pb-lg-2{padding-bottom:.5rem!important} .pl-lg-2{padding-left:.5rem!important} .p-lg-2{padding:.5rem!important} .px-lg-2{padding-left:.5rem!important;padding-right:.5rem!important} .py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important} .pt-lg-3{padding-top:1rem!important} .pr-lg-3{padding-right:1rem!important} .pb-lg-3{padding-bottom:1rem!important} .pl-lg-3{padding-left:1rem!important} .p-lg-3{padding:1rem!important} .px-lg-3{padding-left:1rem!important;padding-right:1rem!important} .py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important} .pt-lg-4{padding-top:1.5rem!important} .pr-lg-4{padding-right:1.5rem!important} .pb-lg-4{padding-bottom:1.5rem!important} .pl-lg-4{padding-left:1.5rem!important} .p-lg-4{padding:1.5rem!important} .px-lg-4{padding-left:1.5rem!important;padding-right:1.5rem!important} .py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important} .pt-lg-5{padding-top:3rem!important} .pr-lg-5{padding-right:3rem!important} .pb-lg-5{padding-bottom:3rem!important} .pl-lg-5{padding-left:3rem!important} .p-lg-5{padding:3rem!important} .px-lg-5{padding-left:3rem!important;padding-right:3rem!important} .py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important} .d-lg-none{display:none!important} .d-lg-inline{display:inline!important} .d-lg-inline-block{display:inline-block!important} .d-lg-block{display:block!important} .d-lg-flex{display:flex!important} } @media (min-width:1200px){ .container{max-width:1140px} .col-xl{flex-basis:0;flex-grow:1;max-width:100%} .col-xl-1{flex:0 0 8.333333%;max-width:8.333333%} .col-xl-2{flex:0 0 16.666667%;max-width:16.666667%} .col-xl-3{flex:0 0 25%;max-width:25%} .col-xl-4{flex:0 0 33.333333%;max-width:33.333333%} .col-xl-5{flex:0 0 41.666667%;max-width:41.666667%} .col-xl-6{flex:0 0 50%;max-width:50%} .col-xl-7{flex:0 0 58.333333%;max-width:58.333333%} .col-xl-8{flex:0 0 66.666667%;max-width:66.666667%} .col-xl-9{flex:0 0 75%;max-width:75%} .col-xl-10{flex:0 0 83.333333%;max-width:83.333333%} .col-xl-11{flex:0 0 91.666667%;max-width:91.666667%} .col-xl-12{flex:0 0 100%;max-width:100%} .offset-xl-1{margin-left:8.333333%} .offset-xl-2{margin-left:16.666667%} .offset-xl-3{margin-left:25%} .offset-xl-4{margin-left:33.333333%} .offset-xl-5{margin-left:41.666667%} .offset-xl-6{margin-left:50%} .offset-xl-7{margin-left:58.333333%} .offset-xl-8{margin-left:66.666667%} .offset-xl-9{margin-left:75%} .offset-xl-10{margin-left:83.333333%} .offset-xl-11{margin-left:91.666667%} .mt-xl-0{margin-top:0!important} .mr-xl-0{margin-right:0!important} .mb-xl-0{margin-bottom:0!important} .ml-xl-0{margin-left:0!important} .m-xl-0{margin:0!important} .mx-xl-0{margin-left:0!important;margin-right:0!important} .my-xl-0{margin-top:0!important;margin-bottom:0!important} .mt-xl-1{margin-top:.25rem!important} .mr-xl-1{margin-right:.25rem!important} .mb-xl-1{margin-bottom:.25rem!important} .ml-xl-1{margin-left:.25rem!important} .m-xl-1{margin:.25rem!important} .mx-xl-1{margin-left:.25rem!important;margin-right:.25rem!important} .my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important} .mt-xl-2{margin-top:.5rem!important} .mr-xl-2{margin-right:.5rem!important} .mb-xl-2{margin-bottom:.5rem!important} .ml-xl-2{margin-left:.5rem!important} .m-xl-2{margin:.5rem!important} .mx-xl-2{margin-left:.5rem!important;margin-right:.5rem!important} .my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important} .mt-xl-3{margin-top:1rem!important} .mr-xl-3{margin-right:1rem!important} .mb-xl-3{margin-bottom:1rem!important} .ml-xl-3{margin-left:1rem!important} .m-xl-3{margin:1rem!important} .mx-xl-3{margin-left:1rem!important;margin-right:1rem!important} .my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important} .mt-xl-4{margin-top:1.5rem!important} .mr-xl-4{margin-right:1.5rem!important} .mb-xl-4{margin-bottom:1.5rem!important} .ml-xl-4{margin-left:1.5rem!important} .m-xl-4{margin:1.5rem!important} .mx-xl-4{margin-left:1.5rem!important;margin-right:1.5rem!important} .my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important} .mt-xl-5{margin-top:3rem!important} .mr-xl-5{margin-right:3rem!important} .mb-xl-5{margin-bottom:3rem!important} .ml-xl-5{margin-left:3rem!important} .m-xl-5{margin:3rem!important} .mx-xl-5{margin-left:3rem!important;margin-right:3rem!important} .my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important} .pt-xl-0{padding-top:0!important} .pr-xl-0{padding-right:0!important} .pb-xl-0{padding-bottom:0!important} .pl-xl-0{padding-left:0!important} .p-xl-0{padding:0!important} .px-xl-0{padding-left:0!important;padding-right:0!important} .py-xl-0{padding-top:0!important;padding-bottom:0!important} .pt-xl-1{padding-top:.25rem!important} .pr-xl-1{padding-right:.25rem!important} .pb-xl-1{padding-bottom:.25rem!important} .pl-xl-1{padding-left:.25rem!important} .p-xl-1{padding:.25rem!important} .px-xl-1{padding-left:.25rem!important;padding-right:.25rem!important} .py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important} .pt-xl-2{padding-top:.5rem!important} .pr-xl-2{padding-right:.5rem!important} .pb-xl-2{padding-bottom:.5rem!important} .pl-xl-2{padding-left:.5rem!important} .p-xl-2{padding:.5rem!important} .px-xl-2{padding-left:.5rem!important;padding-right:.5rem!important} .py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important} .pt-xl-3{padding-top:1rem!important} .pr-xl-3{padding-right:1rem!important} .pb-xl-3{padding-bottom:1rem!important} .pl-xl-3{padding-left:1rem!important} .p-xl-3{padding:1rem!important} .px-xl-3{padding-left:1rem!important;padding-right:1rem!important} .py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important} .pt-xl-4{padding-top:1.5rem!important} .pr-xl-4{padding-right:1.5rem!important} .pb-xl-4{padding-bottom:1.5rem!important} .pl-xl-4{padding-left:1.5rem!important} .p-xl-4{padding:1.5rem!important} .px-xl-4{padding-left:1.5rem!important;padding-right:1.5rem!important} .py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important} .pt-xl-5{padding-top:3rem!important} .pr-xl-5{padding-right:3rem!important} .pb-xl-5{padding-bottom:3rem!important} .pl-xl-5{padding-left:3rem!important} .p-xl-5{padding:3rem!important} .px-xl-5{padding-left:3rem!important;padding-right:3rem!important} .py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important} .d-xl-none{display:none!important} .d-xl-inline{display:inline!important} .d-xl-inline-block{display:inline-block!important} .d-xl-block{display:block!important} .d-xl-flex{display:flex!important} } @media (min-width:576px){ .mx-sm-auto{margin-left:auto!important;margin-right:auto!important} .my-sm-auto{margin-top:auto!important;margin-bottom:auto!important} .mt-sm-auto{margin-top:auto!important} .mr-sm-auto{margin-right:auto!important} .mb-sm-auto{margin-bottom:auto!important} .ml-sm-auto{margin-left:auto!important} .d-sm-flex{display:flex!important} .d-sm-inline-flex{display:inline-flex!important} .flex-sm-row{flex-direction:row!important} .flex-sm-row-reverse{flex-direction:row-reverse!important} .flex-sm-column{flex-direction:column!important} .flex-sm-column-reverse{flex-direction:column-reverse!important} .flex-sm-wrap{flex-wrap:wrap!important} .flex-sm-nowrap{flex-wrap:nowrap!important} .flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important} .justify-content-sm-start{justify-content:flex-start!important} .justify-content-sm-end{justify-content:flex-end!important} .justify-content-sm-center{justify-content:center!important} .justify-content-sm-between{justify-content:space-between!important} .justify-content-sm-around{justify-content:space-around!important} .align-items-sm-start{align-items:flex-start!important} .align-items-sm-end{align-items:flex-end!important} .align-items-sm-center{align-items:center!important} .align-items-sm-baseline{align-items:baseline!important} .align-items-sm-stretch{align-items:stretch!important} .align-content-sm-start{align-content:flex-start!important} .align-content-sm-end{align-content:flex-end!important} .align-content-sm-center{align-content:center!important} .align-content-sm-between{align-content:space-between!important} .align-content-sm-around{align-content:space-around!important} .align-content-sm-stretch{align-content:stretch!important} .align-self-sm-auto{align-self:auto!important} .align-self-sm-start{align-self:flex-start!important} .align-self-sm-end{align-self:flex-end!important} .align-self-sm-center{align-self:center!important} .align-self-sm-baseline{align-self:baseline!important} .align-self-sm-stretch{align-self:stretch!important} .flex-sm-fill{flex:1 1 auto!important} .flex-sm-grow-0{flex-grow:0!important} .flex-sm-grow-1{flex-grow:1!important} .flex-sm-shrink-0{flex-shrink:0!important} .flex-sm-shrink-1{flex-shrink:1!important} .order-sm-first{order:-1!important} .order-sm-last{order:13!important} .order-sm-0{order:0!important} .order-sm-1{order:1!important} .order-sm-2{order:2!important} .order-sm-3{order:3!important} .order-sm-4{order:4!important} .order-sm-5{order:5!important} .order-sm-6{order:6!important} .order-sm-7{order:7!important} .order-sm-8{order:8!important} .order-sm-9{order:9!important} .order-sm-10{order:10!important} .order-sm-11{order:11!important} .order-sm-12{order:12!important} } @media (min-width:768px){ .mx-md-auto{margin-left:auto!important;margin-right:auto!important} .my-md-auto{margin-top:auto!important;margin-bottom:auto!important} .mt-md-auto{margin-top:auto!important} .mr-md-auto{margin-right:auto!important} .mb-md-auto{margin-bottom:auto!important} .ml-md-auto{margin-left:auto!important} .d-md-flex{display:flex!important} .d-md-inline-flex{display:inline-flex!important} .flex-md-row{flex-direction:row!important} .flex-md-row-reverse{flex-direction:row-reverse!important} .flex-md-column{flex-direction:column!important} .flex-md-column-reverse{flex-direction:column-reverse!important} .flex-md-wrap{flex-wrap:wrap!important} .flex-md-nowrap{flex-wrap:nowrap!important} .flex-md-wrap-reverse{flex-wrap:wrap-reverse!important} .justify-content-md-start{justify-content:flex-start!important} .justify-content-md-end{justify-content:flex-end!important} .justify-content-md-center{justify-content:center!important} .justify-content-md-between{justify-content:space-between!important} .justify-content-md-around{justify-content:space-around!important} .align-items-md-start{align-items:flex-start!important} .align-items-md-end{align-items:flex-end!important} .align-items-md-center{align-items:center!important} .align-items-md-baseline{align-items:baseline!important} .align-items-md-stretch{align-items:stretch!important} .align-content-md-start{align-content:flex-start!important} .align-content-md-end{align-content:flex-end!important} .align-content-md-center{align-content:center!important} .align-content-md-between{align-content:space-between!important} .align-content-md-around{align-content:space-around!important} .align-content-md-stretch{align-content:stretch!important} .align-self-md-auto{align-self:auto!important} .align-self-md-start{align-self:flex-start!important} .align-self-md-end{align-self:flex-end!important} .align-self-md-center{align-self:center!important} .align-self-md-baseline{align-self:baseline!important} .align-self-md-stretch{align-self:stretch!important} .flex-md-fill{flex:1 1 auto!important} .flex-md-grow-0{flex-grow:0!important} .flex-md-grow-1{flex-grow:1!important} .flex-md-shrink-0{flex-shrink:0!important} .flex-md-shrink-1{flex-shrink:1!important} .order-md-first{order:-1!important} .order-md-last{order:13!important} .order-md-0{order:0!important} .order-md-1{order:1!important} .order-md-2{order:2!important} .order-md-3{order:3!important} .order-md-4{order:4!important} .order-md-5{order:5!important} .order-md-6{order:6!important} .order-md-7{order:7!important} .order-md-8{order:8!important} .order-md-9{order:9!important} .order-md-10{order:10!important} .order-md-11{order:11!important} .order-md-12{order:12!important} } @media (min-width:992px){ .mx-lg-auto{margin-left:auto!important;margin-right:auto!important} .my-lg-auto{margin-top:auto!important;margin-bottom:auto!important} .mt-lg-auto{margin-top:auto!important} .mr-lg-auto{margin-right:auto!important} .mb-lg-auto{margin-bottom:auto!important} .ml-lg-auto{margin-left:auto!important} .d-lg-flex{display:flex!important} .d-lg-inline-flex{display:inline-flex!important} .flex-lg-row{flex-direction:row!important} .flex-lg-row-reverse{flex-direction:row-reverse!important} .flex-lg-column{flex-direction:column!important} .flex-lg-column-reverse{flex-direction:column-reverse!important} .flex-lg-wrap{flex-wrap:wrap!important} .flex-lg-nowrap{flex-wrap:nowrap!important} .flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important} .justify-content-lg-start{justify-content:flex-start!important} .justify-content-lg-end{justify-content:flex-end!important} .justify-content-lg-center{justify-content:center!important} .justify-content-lg-between{justify-content:space-between!important} .justify-content-lg-around{justify-content:space-around!important} .align-items-lg-start{align-items:flex-start!important} .align-items-lg-end{align-items:flex-end!important} .align-items-lg-center{align-items:center!important} .align-items-lg-baseline{align-items:baseline!important} .align-items-lg-stretch{align-items:stretch!important} .align-content-lg-start{align-content:flex-start!important} .align-content-lg-end{align-content:flex-end!important} .align-content-lg-center{align-content:center!important} .align-content-lg-between{align-content:space-between!important} .align-content-lg-around{align-content:space-around!important} .align-content-lg-stretch{align-content:stretch!important} .align-self-lg-auto{align-self:auto!important} .align-self-lg-start{align-self:flex-start!important} .align-self-lg-end{align-self:flex-end!important} .align-self-lg-center{align-self:center!important} .align-self-lg-baseline{align-self:baseline!important} .align-self-lg-stretch{align-self:stretch!important} .flex-lg-fill{flex:1 1 auto!important} .flex-lg-grow-0{flex-grow:0!important} .flex-lg-grow-1{flex-grow:1!important} .flex-lg-shrink-0{flex-shrink:0!important} .flex-lg-shrink-1{flex-shrink:1!important} .order-lg-first{order:-1!important} .order-lg-last{order:13!important} .order-lg-0{order:0!important} .order-lg-1{order:1!important} .order-lg-2{order:2!important} .order-lg-3{order:3!important} .order-lg-4{order:4!important} .order-lg-5{order:5!important} .order-lg-6{order:6!important} .order-lg-7{order:7!important} .order-lg-8{order:8!important} .order-lg-9{order:9!important} .order-lg-10{order:10!important} .order-lg-11{order:11!important} .order-lg-12{order:12!important} } @media (min-width:1200px){ .mx-xl-auto{margin-left:auto!important;margin-right:auto!important} .my-xl-auto{margin-top:auto!important;margin-bottom:auto!important} .mt-xl-auto{margin-top:auto!important} .mr-xl-auto{margin-right:auto!important} .mb-xl-auto{margin-bottom:auto!important} .ml-xl-auto{margin-left:auto!important} .d-xl-flex{display:flex!important} .d-xl-inline-flex{display:inline-flex!important} .flex-xl-row{flex-direction:row!important} .flex-xl-row-reverse{flex-direction:row-reverse!important} .flex-xl-column{flex-direction:column!important} .flex-xl-column-reverse{flex-direction:column-reverse!important} .flex-xl-wrap{flex-wrap:wrap!important} .flex-xl-nowrap{flex-wrap:nowrap!important} .flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important} .justify-content-xl-start{justify-content:flex-start!important} .justify-content-xl-end{justify-content:flex-end!important} .justify-content-xl-center{justify-content:center!important} .justify-content-xl-between{justify-content:space-between!important} .justify-content-xl-around{justify-content:space-around!important} .align-items-xl-start{align-items:flex-start!important} .align-items-xl-end{align-items:flex-end!important} .align-items-xl-center{align-items:center!important} .align-items-xl-baseline{align-items:baseline!important} .align-items-xl-stretch{align-items:stretch!important} .align-content-xl-start{align-content:flex-start!important} .align-content-xl-end{align-content:flex-end!important} .align-content-xl-center{align-content:center!important} .align-content-xl-between{align-content:space-between!important} .align-content-xl-around{align-content:space-around!important} .align-content-xl-stretch{align-content:stretch!important} .align-self-xl-auto{align-self:auto!important} .align-self-xl-start{align-self:flex-start!important} .align-self-xl-end{align-self:flex-end!important} .align-self-xl-center{align-self:center!important} .align-self-xl-baseline{align-self:baseline!important} .align-self-xl-stretch{align-self:stretch!important} .flex-xl-fill{flex:1 1 auto!important} .flex-xl-grow-0{flex-grow:0!important} .flex-xl-grow-1{flex-grow:1!important} .flex-xl-shrink-0{flex-shrink:0!important} .flex-xl-shrink-1{flex-shrink:1!important} .order-xl-first{order:-1!important} .order-xl-last{order:13!important} .order-xl-0{order:0!important} .order-xl-1{order:1!important} .order-xl-2{order:2!important} .order-xl-3{order:3!important} .order-xl-4{order:4!important} .order-xl-5{order:5!important} .order-xl-6{order:6!important} .order-xl-7{order:7!important} .order-xl-8{order:8!important} .order-xl-9{order:9!important} .order-xl-10{order:10!important} .order-xl-11{order:11!important} .order-xl-12{order:12!important} }
/* main-menu.css */
#fixtop { position: fixed; width: 100%; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); z-index: 1100; border-bottom: 1px solid #003856; box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px; } .site-logo a img { width: 245px; padding: 4px; } .nav-contain { padding-top: 4px; align-items: center; justify-content: space-between; position: relative; } .nav_contents { ul,li { margin: 0; padding: 0; } } li.nav-item.dropdown ul.child-links li a:hover, li.nav-item.dropdown ul.child-links li a:focus-visible { font-weight: 500; color: #0f3db8; background-color: #ebebeb; } span.mega-menu-category { font-weight: 500; display: block; color: #0f3db8; } span.mega-menu-category > a { color: #0f3db8; } ul.mm-links li a { padding: 6px 0; } .srch a img { width: 28px; height: 28px; } .applyAdmission { display: flex; align-items: center; } .call-links-modal { position: fixed; width: 100%; height: 100%; background-color: rgba(0,0,0,.9); backdrop-filter: blur(5px); top: 0; left: 0; align-items: center; justify-content: center; flex-direction: column; z-index: 100; display: none; } .call-links-modal .call-item { background-color: #fff; padding: 10px 20px; border-radius: 25px; border: 1px solid #000; font-size: 18px; } .modal-contents { position: relative; max-width: 100%; flex-direction: column; row-gap: 15px; padding: 15px; border: 1px solid #eee; border-radius: 25px; background-color: #ececec; } .closeCallNavModal { position: absolute; right: -10px; top: -7px; background: #fff; border-radius: 50%; width: 30px; height: 30px; padding: 0; } .showCallModal { display: flex; } .hideCallModal { display: none; } .footer-links { background-color: #000f20; color: #fff; } .footer-copyright { background-color: #001b3a; color: #fff; padding: 20px 0; } .ftr-top { padding-top: 30px; gap: 40px; justify-content: space-between; align-items: center; } .site-logo a { display: block; } .ftr-top .site-logo a img { width: auto; } .social-links ul { display: flex; flex-wrap: wrap; justify-content: end; gap: 15px; padding: 0; margin: 0; } .social-links ul li{ list-style: none; } .social-links ul li a i { background-color: rgb(115 115 115 / 25%); display: block; border-radius: 50%; } .social-links ul li a i::before { content: ""; width: 50px; height: 50px; display: block; background-repeat: no-repeat; background-size: 25px; background-position: center; } .social-links ul li a i.fb-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2260%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%3E%3Cpath%20d%3D%22M80%20299.3l0%20212.7%20116%200%200-212.7%2086.5%200%2018-97.8-104.5%200%200-34.6c0-51.7%2020.3-71.5%2072.7-71.5%2016.3%200%2029.4%20.4%2037%201.2l0-88.7C291.4%204%20256.4%200%20236.2%200%20129.3%200%2080%2050.5%2080%20159.4l0%2042.1-66%200%200%2097.8%2066%200z%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.x-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M357.2%2048L427.8%2048%20273.6%20224.2%20455%20464%20313%20464%20201.7%20318.6%2074.5%20464%203.8%20464%20168.7%20275.5-5.2%2048%20140.4%2048%20240.9%20180.9%20357.2%2048zM332.4%20421.8l39.1%200-252.4-333.8-42%200%20255.3%20333.8z%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.in-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23fff%22%20viewBox%3D%22-2%20-2%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMinYMin%22%20class%3D%22jam%20jam-linkedin%22%3E%3Cpath%20d%3D%22M19.959%2011.719v7.379h-4.278v-6.885c0-1.73-.619-2.91-2.167-2.91-1.182%200-1.886.796-2.195%201.565-.113.275-.142.658-.142%201.043v7.187h-4.28s.058-11.66%200-12.869h4.28v1.824l-.028.042h.028v-.042c.568-.875%201.583-2.126%203.856-2.126%202.815%200%204.926%201.84%204.926%205.792M2.421.026C.958.026%200%20.986%200%202.249c0%201.235.93%202.224%202.365%202.224h.028c1.493%200%202.42-.989%202.42-2.224C4.787.986%203.887.026%202.422.026zM.254%2019.098h4.278V6.229H.254z%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.pin-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M504%20256c0%20137-111%20248-248%20248-25.6%200-50.2-3.9-73.4-11.1%2010.1-16.5%2025.2-43.5%2030.8-65%203-11.6%2015.4-59%2015.4-59%208.1%2015.4%2031.7%2028.5%2056.8%2028.5%2074.8%200%20128.7-68.8%20128.7-154.3%200-81.9-66.9-143.2-152.9-143.2-107%200-163.9%2071.8-163.9%20150.1%200%2036.4%2019.4%2081.7%2050.3%2096.1%204.7%202.2%207.2%201.2%208.3-3.3%20.8-3.4%205-20.3%206.9-28.1%20.6-2.5%20.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6%200-54.7%2041.4-107.6%20112-107.6%2060.9%200%20103.6%2041.5%20103.6%20100.9%200%2067.1-33.9%20113.6-78%20113.6-24.3%200-42.6-20.1-36.7-44.8%207-29.5%2020.5-61.3%2020.5-82.6%200-19-10.2-34.9-31.4-34.9-24.9%200-44.9%2025.7-44.9%2060.2%200%2022%207.4%2036.8%207.4%2036.8s-24.5%20103.8-29%20123.2C161.5%20437.2%20163.5%20467.4%20165.6%20487%2073.4%20450.9%208%20361.1%208%20256%208%20119%20119%208%20256%208S504%20119%20504%20256z%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.flickr-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23ffffff%22%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M400%2032H48C21.5%2032%200%2053.5%200%2080v352c0%2026.5%2021.5%2048%2048%2048h352c26.5%200%2048-21.5%2048-48V80c0-26.5-21.5-48-48-48M144.5%20192a63.5%2063.5%200%201%201%200%20127%2063.5%2063.5%200%201%201%200-127m159%200a63.5%2063.5%200%201%201%200%20127%2063.5%2063.5%200%201%201%200-127%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.youtube-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M549.7%20124.1c-6.2-23.7-24.8-42.3-48.3-48.6C458.9%2064%20288.1%2064%20288.1%2064S117.3%2064%2074.7%2075.5c-23.5%206.3-42%2024.9-48.3%2048.6C15%20167%2015%20256.4%2015%20256.4s0%2089.4%2011.4%20132.3c6.3%2023.6%2024.8%2041.5%2048.3%2047.8C117.3%20448%20288.1%20448%20288.1%20448s170.8%200%20213.4-11.5c23.5-6.3%2042-24.2%2048.3-47.8%2011.4-42.9%2011.4-132.3%2011.4-132.3s0-89.4-11.4-132.3zM232.2%20337.6V175.2l142.7%2081.2z%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.whatsapp-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M380.9%2097.1C339%2055.1%20283.2%2032%20223.9%2032c-122.4%200-222%2099.6-222%20222%200%2039.1%2010.2%2077.3%2029.6%20111L0%20480l117.7-30.9c32.4%2017.7%2068.9%2027%20106.1%2027h.1c122.3%200%20224.1-99.6%20224.1-222%200-59.3-25.2-115-67.1-157m-157%20341.6c-33.2%200-65.7-8.9-94-25.7l-6.7-4-69.8%2018.3L72%20359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2%200-101.7%2082.8-184.5%20184.6-184.5%2049.3%200%2095.6%2019.2%20130.4%2054.1s56.2%2081.2%2056.1%20130.5c0%20101.8-84.9%20184.6-186.6%20184.6m101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5%202.8s-14.3%2018-17.6%2021.8c-3.2%203.7-6.5%204.2-12%201.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8%205.7-9.1%2016.3-30.3%201.8-3.7.9-6.9-.5-9.7s-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2s-9.7%201.4-14.8%206.9c-5.1%205.6-19.4%2019-19.4%2046.3s19.9%2053.7%2022.6%2057.4c2.8%203.7%2039.1%2059.7%2094.8%2083.8%2035.2%2015.2%2049%2016.5%2066.6%2013.9%2010.7-1.6%2032.8-13.4%2037.4-26.4s4.6-24.1%203.2-26.4c-1.3-2.5-5-3.9-10.5-6.6%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i.insta-icon::before { background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M224.3%20141a115%20115%200%201%200-.6%20230%20115%20115%200%201%200%20.6-230m-.6%2040.4a74.6%2074.6%200%201%201%20.6%20149.2%2074.6%2074.6%200%201%201-.6-149.2m93.4-45.1a26.8%2026.8%200%201%201%2053.6%200%2026.8%2026.8%200%201%201-53.6%200m129.7%2027.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9%200-35.8%201.7-67.6%209.9-93.9%2036.1s-34.4%2058-36.2%2093.9c-2.1%2037-2.1%20147.9%200%20184.9%201.7%2035.9%209.9%2067.7%2036.2%2093.9s58%2034.4%2093.9%2036.2c37%202.1%20147.9%202.1%20184.9%200%2035.9-1.7%2067.7-9.9%2093.9-36.2%2026.2-26.2%2034.4-58%2036.2-93.9%202.1-37%202.1-147.8%200-184.8M399%20388c-7.8%2019.6-22.9%2034.7-42.6%2042.6-29.5%2011.7-99.5%209-132.1%209s-102.7%202.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7%209-132.1c7.8-19.6%2022.9-34.7%2042.6-42.6%2029.5-11.7%2099.5-9%20132.1-9s102.7-2.6%20132.1%209c19.6%207.8%2034.7%2022.9%2042.6%2042.6%2011.7%2029.5%209%2099.5%209%20132.1s2.7%20102.7-9%20132.1%22%2F%3E%3C%2Fsvg%3E"); } .social-links ul li a i:hover { background-color: rgba(238, 238, 238, 0.25); } .ftr-quick-links { width: 100%; padding: 15px 0; margin: 15px 0; border-bottom: 1px solid rgb(238 238 238 / 45%); } footer .q-links * { font-size: 14px; line-height: 25px; } .q-links .links-section h4 { color: #0bf; font-size: 17px; padding-top: 5px; } .links-section ul { margin: 5px 0; } .q-links ul li a { color: #fff; } .q-links ul li a:hover { color: #0bf; } @media only screen and (min-width: 768px){ .ftr-mdl-row { gap: 30px; } } @media only screen and (min-width: 1081px){ .lg-hide,.topLinksLgHide,.mob-menu-contents { display: none!important; } .top-nav-sec ul li a { color: #000000; } .top-nav-sec ul li a:hover { color: #0f3db8; } .adm-contact-item {font-size: 14px;} .navbar-toggler { display: none; } span.mega-menu-category { margin: 5px; } .top-nav-sec { padding-top: 4px; display: flex; align-items: center; justify-content: end; gap: 14px; } .top-nav-sec ul { display: flex; gap: 15px; } .top-nav-sec { display: flex; align-items: center; justify-content: end; gap: 14px; } .top-nav-sec ul li { position: relative; } .top-nav-sec ul li::after { content: ""; width: 1px; height: 95%; background: #aeaeae; position: absolute; top: 1px; right: -7px; } .top-nav-sec ul li:last-child:after { content: none; } .menu-row { gap: 20px; } .menu-col { position: relative; } .menu-col::after { content: ""; position: absolute; width: 1px; height: 95%; background-color: #d0d0d0; top: 10px; left: -5px; } .menu-row > .menu-col:first-child::after { content: none; } ul.navbar-nav li { list-style-type: none; a { display: flex; align-items: center; text-decoration: none; } &:last-child a { padding-right: 0; } } ul.navbar-nav > li.nav-item > a { font-weight: 500; } ul.navbar-nav li.nav-item ul li { padding: 0 8px 6px 12px; } li.has-submenu > a { padding: 4px 8px; } ul.navbar-nav > li.nav-item > a { font-size: 16px; color: #000000; padding: 10px 8px 10px 0; line-height: 18px; } ul.navbar-nav > li:first-child a { padding-right: 15px; } ul.navbar-nav li.dropdown.last-item:last-child > div.dropdown-menu{ right: 0; margin-right: 0; } ul.navbar-nav li:last-child a { padding-right: 0; } ul.navbar-nav > li.nav-item > a:hover { color: #0f3db8; } ul.navbar-nav li.dropdown { position: relative; } li.nav-item.dropdown.mega-menu { position: static; } ul.navbar-nav li.dropdown > a:after { content: ""; width: 18px; height: 18px; line-height: 0; color: #a7a7a7; display: inline-block; background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMjgyODI4IiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgaWQ9IkZsYXQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTEyOCwxODhhMTEuOTYxODcsMTEuOTYxODcsMCwwLDEtOC40ODUzNS0zLjUxNDY1bC04MC04MGExMi4wMDAxLDEyLjAwMDEsMCwwLDEsMTYuOTcwNy0xNi45NzA3TDEyOCwxNTkuMDI5M2w3MS41MTQ2NS03MS41MTQ2NWExMi4wMDAxLDEyLjAwMDEsMCwwLDEsMTYuOTcwNywxNi45NzA3bC04MCw4MEExMS45NjE4NywxMS45NjE4NywwLDAsMSwxMjgsMTg4WiIvPgo8L3N2Zz4="); background-size: contain; background-repeat: no-repeat; margin-left: 2px; vertical-align: middle; transition: transform 0.3s ease; } ul.navbar-nav li.dropdown > a.level-sub:after { position: absolute; right: 5px; } div.dropdown-menu, div.sub-dropdown-menu { display: none; } ul.cs-nav li div.dropdown-menu.cs-megamenu { left: 0; } li.nav-item.dropdown ul li a { color: #1a1a1a; } li.nav-item.dropdown ul li a:hover { color: #0f3db8; } .menu-cat-title { font-weight: 500; color: #0060AA !important; } li.nav-item.dropdown ul.child-links li a { display: flex; justify-content: space-between; padding: 8px; } ul.navbar-nav.cs-nav { margin-block-start: 0; margin: 0; padding: 0; display: flex; flex-direction: row; } ul.mm-contents { padding: 8px 15px; } ul.mm-links { padding: 5px; } ul.navbar-nav li.dropdown > a.arrowUp:after { transform: rotate(180deg); } div.dropdown-menu, div.sub-dropdown-menu { padding: 8px 0; border-top: 2px solid #c7c7c7; border-bottom: 2px solid #0f3db8; background-color: rgba(255,255,255,.96); backdrop-filter: blur(15px); display: none; animation: fadeIn 300ms 60ms ease-in-out forwards; opacity: 0; } @keyframes fadeIn{ 0% { opacity: 0; } 100% { opacity: 1; } } div.dropdown-menu, div.sub-dropdown-menu { position: absolute; z-index: 100; border-left: 1px solid #c7c7c7; border-right: 1px solid #c7c7c7; } div.sub-dropdown-menu { top: -2px; right: 100%; margin-right: 0; } li.dropdown:hover > div.dropdown-menu { display: block; } ul.child-links > li.dropdown:hover > div.sub-dropdown-menu { display: block; } div.dropdown-menu, div.sub-dropdown-menu { min-width: 205px; } li.nav-item.dropdown ul.child-links li { border-bottom: 1px solid #e1e1e1; } span.mega-menu-category { border-bottom: 1px solid #dddddd; } .applyAdmission { column-gap: 8px; } .srch a img { width: 25px; height: 25px; } } @media only screen and (min-width: 1200px){ .ftr-col { width: auto; } } @media (min-width: 1081px) and (max-width: 1200px) { .site-logo a img { width: 210px; } ul.navbar-nav > li.nav-item > a { font-size: 16px; } } @media only screen and (min-width: 1400px){ div.dropdown-menu, div.sub-dropdown-menu { width: 100%; } } @media (min-width: 1081px) and (max-width: 1399px) { .mega-menu .cs-megamenu{ left: 0; right: 0; margin: 0 auto; } } @media (max-width: 1080px) { .site-logo a img { width: 200px; } ul li a { width: 100%; display: block; color: #ffffff; position: relative; z-index: 10; } li.nav-item { position: relative; } li.dropdown:before { content: ""; background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjgwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyOCAyNGExMDQgMTA0IDAgMSAwIDEwNCAxMDRBMTA0LjEyIDEwNC4xMiAwIDAgMCAxMjggMjRtMCAxOTJhODggODggMCAxIDEgODgtODggODguMSA4OC4xIDAgMCAxLTg4IDg4Ii8+PHBhdGggZD0iTTE2OS4zNTIgMTEwLjA1NGE4IDggMCAwIDAtMTEuMjk4LjU5NEwxMjggMTQ0LjA0MWwtMzAuMDU0LTMzLjM5M2E4IDggMCAwIDAtMTEuODkyIDEwLjcwNGwzNiA0MGE4IDggMCAwIDAgMTEuODkyIDBsMzYtNDBhOCA4IDAgMCAwLS41OTQtMTEuMjk4Ii8+PC9zdmc+'); background-size: 35px; background-repeat: no-repeat; background-position: center; cursor: pointer; position: absolute; width: 40px; height: 40px; right: 0; top: -3px; transition: transform 0.3s ease; transform-origin: center; filter: brightness(0) invert(1); } li.dropdown.open::before { transform: rotate(180deg); } .dropdown-menu { background-color: #111f4a; padding: 8px 0 8px 8px; border-radius: 10px; display: none; } .has-submenu ul { padding-top: 8px; padding-left: 8px; } .has-submenu > a { width: 100%; display: block; background-color: #000d35; padding: 5px; border-radius: 10px; } .mobHide { display: none!important; } .mobile-menu { position: fixed; bottom: 0; width: 100%; background-color: #0a2347; border-top: 1px solid #fff; z-index: 100; } .mob-menu-contents { position: relative; } .mob-menu-contents .mobCTA { width: 100%; height: 50px; background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 13px; line-height: 15px; color: #fff; border-right: 1px solid #eee; border-radius: 0; cursor: pointer; } .mobCTA:active, .mobCTA:focus{ background-color: #002040; } .mob-menu-contents .mobCTA:last-child { border: 0; } .bottom-nav-sec { position: fixed; width: 100%; height: 100dvh; padding-bottom: 60px; top: 60px; left: 0; z-index: 150; background-color: #000d35; overflow-y: auto; } .bottom-nav-sec { visibility: hidden; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); transform: translateX(100vw); } .side-menu-show-right { transform: translateX(0); visibility: visible; } .sideNav { cursor: pointer; display: block; position: relative; width: 2.6rem; height: 2.4rem; right: 5px; z-index: 160; } .sideNav .bar { width: 2.2rem; height: .2rem; background: #0a5eb4; border-radius: .2rem; transition: 0.2s ease; display: block; cursor: pointer; } .sideNav .bar:not(:first-child) { margin-top: .5rem; } .sideNav .bar:nth-child(2) { width: 1.7rem; } .sideNav .bar:nth-child(3) { width: 1.3rem; } .sideNav.open-sideNav .bar { position: relative; } .sideNav.open-sideNav .bar:first-child { transform: rotate(-45deg); top: 15px; } .sideNav.open-sideNav .bar:nth-child(2) { opacity: 0; } .sideNav.open-sideNav .bar:nth-child(3) { top: -7px; transform: rotate(45deg); width: 2.2rem; } .top-nav-sec ul li a, .navbar-nav.cs-nav li { font-size: 20px; } .navbar-nav.cs-nav { padding: 20px; } .navbar-nav.cs-nav li { padding-bottom: 12px; } .navbar-nav.cs-nav li:last-child { padding-bottom: 0; } .has-submenu > a { width: 100%; display: block; background-color: #000d35; padding: 5px; border-radius: 10px; } .top-links { padding: 0 20px; font-size: 20px; } .top-links ul li { padding-bottom: 10px; } .top-nav-sec ul li { padding-bottom: 15px; } .top-menu-show-right { width: auto; } } @media (max-width: 767px) { .site-logo a img { width: 160px; } .sideNav { width: 2.4rem; height: 2rem; } .sideNav .bar { height: .19rem; } .ftr-mdl-row { gap: 15px; } .ftr-col { width: calc(100% / 2 - 15px); } } @media (max-width: 570px) { .ftr-top { justify-content: center; flex-wrap: wrap; gap: 20px; } .social-links ul { justify-content: center; } }
/* main.css */
.activity-img,img{max-width:100%}*,img{border:0}.announce-info p,.vdo-ttl,ul.dropdown-menu li a{font-size:14px}.aligncenter,.banner-info p span,.dr-ttl h2 span,.gal-bx:hover .galview,.img-school:hover .school-text,.is-open .label--close,.resp-accordion-active,.resp-content-active,.scholar-ico,.school_study_item_con,.scl-item p span,.search a,.top_section .dropdown:hover>.dropdown-menu,.values-text strong,li.mob a span,section.pdi .container p span{display:block}.progs h6 span,.progs ul li,.table thead tr td,b,strong{font-weight:700}.allblog,.banner-info,.banner-wrap,.broucher,.btn-comon,.bx,.gl-cl a span,.loader,.pic-zm,.placed-happy,.rating,.school-study .school-title,.student-ttl,.top-company .comp-title,.vdo-zm,.ytb-item a:after,a .scl-ico,section.pdi{text-align:center}*,.tabs-panel:active,.tabs-panel:focus,.tabs-trigger:active{outline:0}.activity-img,.announce,.banner-wrap,.faculty-info,.img-faculty figure,.img-left,.img-school,.imgInp,.label--close,.label--open,.press-thumb,.rvw-img,.scl-intro img{overflow:hidden}.addrs-info ul,.main-ftr ul li,.sitemap ul li,.top-nav ul,.vis_mis ul,ul.appl-scl li{list-style-type:none}body,html,section{overflow-x:hidden}*,.accred-img span,.accred-ttl h4,.announce-info,.dr-ttl h2,.dr-ttl p,.gal-ttl h3,.news-infos p,.pb-item a span,.read-more-blue,.read-more-white,.values-text h2,.values-text p,.values-text strong,h1,h2,h3,h4,h5,h6,p{font-family:Roboto,sans-serif}.alignleft{float:left;margin-right:10px}.alignright{float:right;margin-left:10px}.aligncenter,.img-load,.loader:before{margin:0 auto}ol,ul{list-style-position:inside}ol.olnum li{padding-bottom:10px}i{font-style:italic}u{text-decoration:underline}.announce-info a,.broucher a,.btn-comon:hover,.bx-nm a,.color-blue,.color-orange,.dg-bx div a.text-dark,.faculty-member a,.galview a,.pb-item a,.scholr a,.scl-intro a,a,a.read-more-blue,a.read-more-white:hover,input.form-btn:hover,li.mail a,li.mail a:hover,li.mob a,li.mob a:hover,ul.appl-scl a,ul.resp-tabs-list li a{text-decoration:none}a{color:#1758a8;transition:.4s linear;-moz-transition:.4s linear;-webkit-transition:.4s linear;-ms-transition:.4s linear}table{font:15px Roboto,sans-serif;color:#595656;border-collapse:collapse}a.text-primary{color:#1758a8!important}table,td,th{border:1px solid #d3d3d3!important}.table thead th{border:1px solid #000}.loader{width:100%;height:100%;top:0;left:0;position:fixed;display:flex;justify-content:center;align-items:center;z-index:1050;background-color:#fff}.loader:before{content:"";position:absolute;width:80px;height:80px;left:0;right:0;border:4px solid;border-color:#0039b3 #0039b3 transparent;border-radius:50%;animation:1s infinite spin}@keyframes spin{to{transform:rotate(360deg)}}.img-load{width:70px;height:70px;position:relative}.cta-btn.apply{padding:4px 10px;background-color:#d61e3e}.slick-slider{-webkit-user-select:inherit;-moz-user-select:inherit;-ms-user-select:inherit;user-select:inherit}.slide-caption{width:100%;top:25px;user-select:inherit}.pdx-5{padding-left:50px;padding-right:50px}.txt-blue,.view-more:hover{color:#0f3db8}.top_section .dropdown>.dropdown-toggle:active{pointer-events:none}.top_section .navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute;min-width:200px;top:35px;background-color:#1db3ed}.accred-items,.accred-ttl a,.addrs-info ul li,.banner-info,.banner-wrap,.box p,.bx,.bx div,.comp-slider,.content h2,.evt-ttl h2,.explore-slider,.img-faculty figure,.img-school,.info .card,.notice a,.pgrm ul li,.pic-zm a,.point,.read-more-blue,.read-more-white,.resp-tabs-list li,.school_study_item_bottom,.school_study_item_top,.scl-item div,.scl-item img,.search,.search a,.std-texts p,.vis_mis h2,.vis_mis ul li,section.contacts,ul.appl-scl a,ul.appl-scl li,ul.resp-submenu{position:relative}.content-right,.img-left,.top-nav ul,section.high-profile .container-fluid{padding:0}.top-nav .navbar{padding:0 5px;background:#1db3ed}.top-nav .navbar-dark .navbar-nav .nav-link{color:#fff;position:relative;padding:8px;font-size:14px}.top-nav:after{content:"";position:absolute;right:0;top:0;width:30%;height:37px;background-color:#1db3ed;z-index:-1}.db{display:block!important}.dropdown-item{color:#000;padding:3px 12px;white-space:normal;line-height:23px}ul.cl3 li{padding:7px 0}.vdo-ttl{padding:0 5px;color:#0050a7}.activity-date,.dg-bx div a:last-child i,.dg-bx div a:last-child span,.progs h6 span,.rvw .media-body p,h1.site-headline,section.pdi .container p{font-size:15px}.search a{color:#000;padding-top:0;padding-left:5px}.btn-comon,.btn-comon:hover,.progs h6,.read-more-white,.school_study_item_con a.read-more-white:hover{color:#fff}.search a:before{content:"|";position:absolute;top:0;left:-7px;color:#ccc}.search-field{width:245px;height:40px;background-color:#ccc;margin-left:auto;display:none;position:absolute;top:-5px;right:35px}#main-slider ul.slick-dots,.gl-cl,.gl-cl a,.gl-cl a span,.progs h6 span{display:inline-block}section.header-slider .slider-content{position:relative;text-align:center}.mrque-info{background:#b1e3fb}h2.caption-headr{font-weight:700;color:#fff;padding-top:15px;position:relative;font-size:2.5rem}.adms h3,.progs h6{font-weight:900}h2.caption-headr:before{content:"#";position:absolute;left:-28px}h2.caption-headr:after{content:"";width:90%;height:3px;position:absolute;background:#fff;left:0;bottom:-10px}.progs{padding-top:25px}.appl-h1 h1,.progs h6{font-size:26px}.progs h6 span{background:rgb(255 255 255 / 36%);padding:1px 10px;position:relative;top:-3px}.progs ul{padding-left:30px}.progs ul li{color:#e2e2e2;font-size:27px;position:relative;list-style:none;padding-left:20px}.progs ul li:before{content:"";position:absolute;width:12px;height:11px;background:#b9b9b9;border-radius:50%;left:0;top:11px}.four_box ul li:after,.four_box ul li:before{width:calc(100% + 18px);height:calc(100% + 18px);top:-9px;left:-9px}#main-slider ul.slick-dots{padding:0;position:absolute;bottom:5%;left:14%}#main-slider ul.slick-dots li button{border-radius:50%;width:.5rem;height:.5rem;padding:0;margin:3px;color:transparent;overflow:hidden}#main-slider ul.slick-dots li.slick-active button{background:#10b2ff}#main-slider ul.slick-dots li{list-style:none;display:inline-block}.adms,section.diverse-research,section.mous,section.pdi{padding:40px 0}.adms a{border-radius:16px;font-size:20px}.card-contents{width:70%}.std-card{margin-top:-20px}.card-bg-green{background-color:#cde070;padding-top:25%}.card-bg-green small{font-size:11px}.card-bg-green img{-ms-transform:rotateZ(-20deg);transform:rotateZ(-20deg);top:-60px;position:absolute;width:165px;margin:0 auto;left:0;right:0}.card-bg-green h3{font-size:21px;font-weight:900;color:#0f3db8;line-height:12px}.card-bg-green h5{color:#0f3db8;font-weight:600}.card-bg-green p{font-size:12px;font-weight:600}.ln span{font-size:16px;font-weight:900}section.best-box{top:-27px}.clnt-texts,.student-feedback,.top-company,.webguru,.ytb-btn,section.best-box .feature-bx{background:#f2f2f2}.glance-headr h2:after,.glance-headr h2:before{content:"";width:25%;height:1px;background:#c7c7c7;top:14px;position:absolute}.carousel-indicators li{width:12px;height:12px;border-radius:50%}.carousel-indicators .active{width:15px;height:15px;margin-top:-2px}.btn-comon{padding:13px 20px;width:195px;margin:0 5px;border:1px solid #eee;font-size:17px}.color-orange{background-color:#f77a10;transition:.3s linear;-webkit-transition:.3s linear}.color-blue,.color-orange:hover{background-color:#0050a7}.color-blue{transition:.3s linear;-webkit-transition:.3s linear}.bg-dorange,.bg-orange,.color-blue:hover{background-color:#f77a10}.text-dark-blue{color:#00268a}.feature-bx img{width:60px;height:60px}.feature-bx div h4{font-weight:700;font-size:17px;padding-top:10px;color:#0f3db8;margin-bottom:0}.feature-bx:before,.tapping-talent:before{content:"";width:1px;height:60%;background:#ccc;position:absolute;top:20%;left:0}.accred-items:first-child:before,.feature-bx:first-child:before{content:none}.feature-bx div p{font-weight:300;font-size:14px;margin-bottom:4px}.placed-happy{width:50%;background:rgb(216 216 216 / 85%);margin:0 auto;left:0;right:0;border-bottom-right-radius:50px;border-bottom-left-radius:50px}section.at-glance{padding-bottom:30px}.glance-headr h2{font-weight:700;font-size:27px;color:#5b5b5b;margin-bottom:25px}.glance-headr h2:before{left:5%}.glance-headr h2:after{right:5%}.gl-box-wrap{background:#edecea}.gl-txt h3{font-weight:700;color:#0f3db8}.gl-cl a,.gl-txt p b{color:#5b5b5b}.announce-info,.dr-ttl h2,.gl-txt p,.std-texts div h5 span{font-weight:300}.gl-txt{padding:10px 25px 45px}.gl-cl,.sfbg-white{background:#fff}.bx,.img-left{background-color:#ccc}.gl-cl a{font-family:"Helvetica Neue LT Roman";font-size:17px}.gl-cl p{padding:7px 10px}.gl-cl a span{background:#0f3db8;padding:7px 14px;border-left:4px solid #949494}.bx,.four_box ul li,.four_box ul li:after{border:9px solid transparent}.gl-cl a span img{width:12px;height:24px}section.top-company{background-color:#eee;padding:45px 0}.top-company .comp-title h1{font-family:Roboto,sans-serif;font-size:28px;color:#fff;font-weight:700}.comp-slider{margin-top:30px}.point{margin-left:20px;padding-left:35px}.point:before{content:"";position:absolute;background-image:url(../images/bullet-blue.svg);background-position:center;background-repeat:no-repeat;background-size:30px;top:5px;left:-5px;width:30px;height:25px}.news-events h1.point{font-size:27px}.accordion-trigger-icon svg,.activity-date p,.activity-info p,.school_study_item_bottom,.tabs-tab-list li,section.high-profile .container-fluid .row{margin:0}.img-left{height:617px}.img-left .img-fluid{width:100%;height:auto;object-fit:cover}.bx{width:50%;height:50%;padding:57px 40px;color:#fff}.bx-nm{min-height:180px}.bx-ltorng{background-color:#fcd975}.bx-mdorng{background-color:#fab24c}.bx-dporng{background-color:#f88c3c}.bx-ltgrn{background-color:#edf9b1}.bx-mdgrn{background-color:#c7eab4}.bx-teal{background-color:#7fcebb}.bx-ltvl{background-color:#c6dbf0}.bx-vl{background-color:#9dcae1}.bx-nm a,.dr-ttl,.scholr a{padding-top:40px}.bx-nm a i{color:rgb(0 0 0 / 45%);font-size:30px}.deb-intro{position:absolute;bottom:10%;left:15%;padding:20px 50px 20px 35px;color:#fff;background-color:rgba(0,0,0,.45);text-align:left;border:1px solid}.deb-intro h2{color:#1ecdff;font-size:30px;margin-top:10px;margin-bottom:0}.bx p,.dept-nm,.implinks .is-selected,.mht{font-size:20px;font-weight:500}.read-more-blue:before,.read-more-white:before{font-size:22px;line-height:1;position:absolute}img.bx-img{width:100px;height:auto}.bx p{font-family:Roboto,sans-serif;margin-top:10px}.bx p span{display:block;line-height:1}.bx div{z-index:5}.four_box ul{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0;padding:0}.four_box ul li{list-style:none;width:50%;background-position:left -40px bottom -10px;background-repeat:no-repeat;background-size:230px;transition:.3s linear;-webkit-transition:.3s linear}.four_box ul li:first-child{background-color:#f67f00;background-image:url(../images/student.svg)}.four_box ul li:nth-child(2){background-color:#d33532;background-image:url(../images/diploma.svg)}.four_box ul li:nth-child(3){background-color:#6928c6;background-image:url(../images/team.svg)}.four_box ul li:nth-child(4){background-color:#00959d;background-image:url(../images/people.svg)}.four_box ul li:first-child:before{background-color:rgb(246 127 0 / 91%)}.four_box ul li:nth-child(2):before{background-color:rgb(211 53 50 / 91%)}.four_box ul li:nth-child(3):before{background-color:rgb(105 40 198 / .91)}.four_box ul li:nth-child(4):before{background-color:rgb(0 149 157 / .91)}.four_box ul li:before{content:"";position:absolute;z-index:1}.four_box ul li:after{content:"";position:absolute;z-index:1;transition:.3s linear;-webkit-transition:.3s linear}.four_box ul li:hover:after{border:9px solid #fff}.course-enq{top:45px;left:11px}.course-enq h5{margin-bottom:16px}.course-enq h5 i,.rvw-rate i{font-size:12px}section.school-study,section.tabber{padding:50px 0}.school-study .school-title h2{font-size:35px;font-family:Roboto,sans-serif;margin-bottom:65px}.school_study_items ul{margin:0;padding:0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.school_study_items ul li{list-style:none;width:calc(33% - 15px)}.degree-bg{background:#fcd975}.diploma-bg{background:#fab24c}.placed-bg{background:#f88d3c}.online-reg-bg{background:#edf9b1}.feathers-bg{background:#c7e9b4}.quick-links-bg{background:#7fcdbb}.leader-bg{background:#f27e2c}.service-bg{background:#f74e2a}.choseus-bg{background:#bd0026}.campus-bg{background:#6baed6}.outreach-bg{background:#2171b5}.career-bg{background:#14519c}.scholr,section.our-values{background-repeat:no-repeat;background-size:100%}.online-reg-bg h3 a{color:#30a0e2}.feathers-bg h3 a{color:#1b6792}.quick-links-bg h3 a{color:#0f4461}.placed-bg h3 a{color:#9b150f}.school_study_item_con_bx{position:absolute;width:100%;height:35px;top:0;text-align:center;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;transition:.3s linear;-webkit-transition:.3s linear}.galview,.img-school .school-text{display:none;position:absolute;top:0;left:0;text-align:center}.school_study_item_con h3{font-weight:600;font-size:18px;color:#fff;line-height:25px;margin-bottom:0}.school_study_item_top:hover .school_study_item_con_bx{opacity:1;visibility:visible;background:rgb(19 97 177 / 85%)}.school_study_item_bottom:hover .school_study_item_con_bx{opacity:1;visibility:visible}.school_study_item_bottom img,.school_study_item_top img{transition:.3s linear;-webkit-transition:.3s linear;filter:grey scale(0);-webkit-filter:grey scale(0)}.school_study_item_bottom:hover img,.school_study_item_top:hover img{filter:grey scale(100%);-webkit-filter:grey scale(100%)}.img-school .school-text{content:"";width:100%;height:100%;background-color:rgb(0 23 129 / 41%);padding:75px 12px;color:#fff}.mht{min-height:85px;border-left:5px solid #1450a7}.bg-blue{background-color:#36b3ed}.bg-light{background-color:#f5f5f5!important}.bg-sky{background-color:#37b5ed}.thead-darkblue{background-color:#0f419f!important}.tblsky-hover tbody tr:hover,table.tbl-pgrm tbody tr:hover td:first-child{background-color:#37b5ed;color:#fff}.dg-bx{-webkit-box-shadow:2px 3px 9px 0 rgba(50,50,50,.4);-moz-box-shadow:2px 3px 9px 0 rgba(50,50,50,.4);box-shadow:2px 3px 9px 0 rgba(50,50,50,.4)}.dg-bx div a.text-dark{color:#000!important;line-height:20px;white-space:nowrap}.dg-bx div a i{color:#37b5ed}.dg-bx div a:first-child span{font-size:21px}.scholr{background-image:url(../images/evt-sky.png);background-color:#36b3ed;background-position:bottom;min-height:180px}.scholr:hover{background-image:url(../images/evtbg.png);background-color:#0f419f}.mous .row div img,.std-texts,.why-chooseus{background-color:#fff}.scholar-ico{width:40px;height:auto}.values-slider,.values-text{background-color:rgba(0,23,128,.75)}.box{height:326px;border:3px solid #fff}.box h6{font-family:"Conv_Helvetica Condensed Black"}.sfbg-blue h6{color:#1960aa}.sfbg-grey h6,.std-campus .point,.std-welfare .point,.welfare-headr h2{color:#e31e25}.box img{height:75px;width:auto}.box p{line-height:20px;color:#3e3e3e;bottom:0;font-size:15px;font-family:Conv_HelveticaNeue-Light;letter-spacing:.2px}.box p span{color:#a2a2a2;font-size:14.7px;line-height:24px}.placed-section h5,.pros-ico{font-size:25px}.mail-success div i.fa-check-circle{font-size:75px}h1.thnk{font-size:50px}.school-eng .container .row .card:hover{-webkit-box-shadow:0 3px 3px 0 rgba(50,50,50,.75);-moz-box-shadow:0 3px 3px 0 rgba(50,50,50,.75);box-shadow:0 3px 3px 0 rgba(50,50,50,.75);cursor:default}.school-eng .container .row .card>a{text-decoration:none;color:#444}.img-mt .img-school{height:200px;margin-bottom:0;margin-top:35px}.img-nm .img-school img{object-fit:cover;width:100%;height:200px}.img-md .img-school,.marque-content,.press-thumb{height:200px}.read-more-blue:after,.read-more-white:after{position:absolute;width:90px;height:1px;bottom:-3px}section.our-values{padding:50px 0;background-image:url(../images/bwu.png);background-position:center}.values-slider{padding:30px 15px}.values-text{padding:38px 30px;color:#fff}.values-text h2{font-size:36px;font-weight:300}.values-text p{font-weight:300;font-size:14px;line-height:22px}.read-more-blue{color:#0050a7}.read-more-white:before{content:"+";right:-25px;color:#fff}.read-more-white:after{content:"";background-color:#fff;right:-40px}.read-more-blue:before{content:"+";right:-20px;color:#0050a7}.read-more-blue:after{content:"";background-color:#0050a7;right:-40px}a.read-more-white:hover{color:#7ed0ff}.panel-content ul li a,.scl-intro a,a.read-more-blue:hover,ul.list-group.syllabus-list li a{color:#000}section.accred{background:#f1f0ef}.blue-headr h2{display:inline-block;background:#0f3db8;color:#fff;padding:12px 20px;font-size:25px;font-weight:700}.accred-img span,.accred-ttl h4{color:#053e54}.accred .col p{font-size:14px;line-height:16px;font-family:"Helvetica Neue LT Roman"}.accred-ttl a{right:38px}.accred-items{margin:20px 17px}.accred-img{width:185px;padding-top:15px}.accred-ttl h4{font-size:23px;font-weight:700}.accred-img img{width:64px;height:auto;float:left;padding-right:5px}.accred-img span{font-size:15px;line-height:1.2;display:block;padding-top:10px}.accred-items:before{content:"";width:1px;height:175px;background-color:#ccc;position:absolute;left:-15px;top:-30px}.galview a,.slick-slider .slick-arrow,.ytb-item a:after{top:50%;transform:translateY(-50%)}section.gallery{background-color:#f2f2f2;padding:50px 0;overflow-y:hidden}.cap-name{width:100%;bottom:10px;background-color:rgb(0 0 0 / 50%)}.cap-name h3,.happening h3{font-size:20px}.galview{right:0;width:94%;height:94%;margin:7px;background-color:rgba(0,23,128,.7)}.announce-info,.pb-item{margin-bottom:15px;text-align:center}.galview a{width:100%;height:100%;position:absolute;left:0;right:0;color:#fff}.galview a span{position:relative;top:45%;transform:translateY(-45%)}.gal-ttl h3{margin-bottom:25px;font-weight:500}.announce{position:relative;padding:10px;background-color:#0050a7;height:205px;color:#fff}.announce-info{margin-top:12px;padding:0 20px}.announce-info a{color:#3ac8ff;border-bottom:1px solid}.dr-publication{padding-left:10%}.dr-ttl h2{font-size:45px;margin-bottom:35px}.dr-ttl h2 span,.explore-ttl h2,.news-infos h4,.pb-item a{font-family:Roboto,sans-serif;font-weight:700}.pb-item{width:200px;height:200px;background-image:url(../images/border-round.png);background-position:center;background-repeat:no-repeat;background-size:contain;padding:35px}.pb-item a{font-size:30px;color:#f77a10}.pb-item a span{font-size:18px;color:#2d2d2d;display:block;line-height:1.2;font-weight:400}.pb-item a span:hover,.pb-item a:hover,.scl-intro a:hover{color:#1654aa}section.explore-news{padding:40px 0;background-color:#f9f9f9;border:4px solid #eee}.img-rounded,.news-dt,.news-item{border-radius:50%}.explore-ttl{text-align:center;margin-bottom:30px;margin-top:20px}.explore-ttl h2{font-size:37px;margin:0;color:#fff}.news-item{background-color:#4386c5;padding:50px 55px;margin:60px 0;position:relative}.broucher a:hover,.frm-submit .btn,.news-dt,section.mous{background-color:#1eb4ee}.contact-info,.news-dt,.rating,.ytb-item{padding:10px}.news-infos{text-align:center;color:#fff}.news-infos h4{font-size:18px}.mous-text h4,.news-dt b,.student-ttl{font-weight:500;font-family:Roboto,sans-serif}.news-dt b span,.std-texts p{font-weight:300;font-family:Roboto,sans-serif}.news-dt{position:absolute;width:70px;height:70px;top:0;right:16px;text-align:center;-webkit-box-shadow:0 18px 24px 9px rgba(0,0,0,.17);-moz-box-shadow:0 18px 24px 9px rgba(0,0,0,.17);box-shadow:0 18px 24px 9px rgba(0,0,0,.17)}.news-dt b{color:#fff;font-size:20px;line-height:1.4}.news-dt b span{display:block;font-size:15px;line-height:1}.img-rounded{width:100px!important;display:inline!important}.mous-text{text-align:right}.mous-text h4{font-size:19px}.mous .row div img{padding:10px 15px}section.client-speak,section.student-feedback,section.youtube-vdos{padding:20px 0}.ytb-item a:before{content:"";position:absolute;width:100%;height:100%;background:rgb(0 0 0 / 5%)}.ytb-item a:after{content:"";width:60px;height:60px;position:absolute;background-image:url(../images/ytb-vdo-icon.png);background-position:center center;background-repeat:no-repeat;left:0;background-size:50px;right:0;margin:auto}.std-info{-webkit-box-shadow:5px 0 9px -6px #828282;-moz-box-shadow:5px 0 9px -6px #828282;box-shadow:5px 0 9px -6px #828282}.student-ttl h2{margin-bottom:40px}.std-texts p{color:#000;font-size:14px;line-height:21px;margin-bottom:15px}.std-texts p:after{content:"";position:absolute;width:150px;height:1px;background:#8c8c8c;margin:0 auto;left:0;right:0;bottom:-10px}.clnt-texts p:after{width:98%}.w-30{width:30%}.std-texts div h5{font-size:15px;font-weight:700}.slick-slider .slick-arrow{position:absolute;font-size:19px;-moz-transform:translateY(-50%);color:#fff}.apply-on,.photo-galery:hover .pic-zm a,.vdo-galery:hover .vdo-zm a{transform:translateY(-50%)}.slick-slider .prev-arrow{left:-40px}.slick-slider .next-arrow{right:-40px}.slick-slider button.slick-arrow{background-color:#0f3db8;width:27px;height:27px;z-index:1}.evt-ttl h2:after,.evt-ttl h2:before{content:"";width:80px;height:2px;bottom:16px}.rcg{width:20%}.gl-col{width:32%}.rating{width:140px;top:12%;background:#fff;right:10px;border-radius:25px}.rating h5{margin:0;color:#e31e25;font-size:27px;font-weight:600;line-height:17px}.rating span{font-size:12px;color:#444}.placed-section{background:#f4e38e}.placed-section p{font-size:28px}.tapping-talent:after{content:"";width:1px;height:60%;background:#ccc;position:absolute;top:20%;right:0}.banner-wrap,.evt-bg:hover,.rgt:before,.vis_mis ul li:before{background-repeat:no-repeat}.banner-wrap{width:100%;background-image:url(/images/img-load.svg);background-position:center}.banner-wrap img,.bic-footer img,.cl-12,.placement-tracker img,.scl-intro img{width:100%}.banner-info{border-bottom:1px solid #a7a7a7}#error_message,.apply-on,.evt-ttl h2:after,.evt-ttl h2:before,.label--close,.label--open,.rgt:before,.scl-item div:before,.vdobox,.view-all,.vis_mis ul li:before{position:absolute}.banner-info h1{font-size:22px;background-color:rgb(15 61 184);color:#fff;font-weight:400}.evt-wrap h3,.frm-submit .btn,.pgrm ul li a,section.pdi .container h2{font-weight:600}.banner-info h1 span{color:#1eb4ee;font-weight:500;text-transform:uppercase}.sfbg-grey{background-color:#ececec}.sfbg-blue{background-color:#daeefa}.banner-info p{color:#5b5b5b;font-size:15px;width:78%;margin:0 auto 5px}.evt-ttl h2,.evt-wrap p a{color:#00419f;display:inline-block}.placement-vismis,section.events{padding-bottom:40px}.evt-ttl h2:before{background-color:#00419f;left:-85px}.evt-ttl h2:after{background-color:#00419f;right:-85px}.evt-bg{padding:40px 20px}.evt-bg:hover{background-image:url(../images/evtbg.png);background-position:top left;background-size:auto;background-color:#00419f;color:#fff}.apply-book p,.evt-bg:hover .evt-wrap p a{color:#1eb4ee}.evt-wrap p{font-size:15px;padding-top:20px}.evt-wrap h3{font-size:16px;padding-bottom:20px;border-bottom:3px solid #1eb4ee}.broucher a,.evt-wrap p a,.scl-intro p{font-weight:500}.evt-dt p{color:#f77a10}section.scl-points{background-color:#0ca3dd}.vis_mis,section.school{margin-bottom:30px}.scl-item{width:20%;padding:25px 5px}.scl-item img{width:45px;height:auto;z-index:1;margin-left:10px}.scl-item p{color:#fff;padding-left:12px;margin:5px 0;font-size:13px}.scl-item div:before{content:"";width:50px;height:50px;top:-6px;left:-4px;z-index:0;border-radius:50%;background:#068cd0}.apply-book{background-color:#0054aa;color:#fff;margin-top:-64px;padding:25px 17px}.broucher{margin:15px 0;background-color:#ce3232}.broucher a{color:#fff;display:block;font-size:17px;padding:15px 0}.broucher a span img{width:20px;height:20px;display:inline-block}.apply-on{display:block;padding:25px 0;top:50%;left:0;right:0}.apply-book h3{font-weight:100}.scl-intro a img{transition:.6s}.scl-intro a:hover img{opacity:.6}.rgt:before{content:"";width:23px;height:23px;background-position:center;background-size:24px;top:0;left:-30px}.apply-book form .form-control{background-color:transparent;border:0;padding:0;border-bottom:1px solid #fff;border-radius:0;outline:0;color:#fff}.apply-book form .form-control.select{background-color:#0054aa;opacity:.8}.apply-book form .form-control::placeholder{color:#fff;opacity:.8}.apply-book form .form-control:-ms-input-placeholder{color:#fff}.apply-book form .form-control::-ms-input-placeholder{color:#fff}.frm-submit .btn{transition:.3s}.frm-submit .btn:hover{background-color:#0089ff}.bg-dblue{background-color:#036fa0}.bg-dbd{background-color:#494b64}.act-wrap,.activity-catg,.ftr-col-fw,.pgrm{background-color:#f2f2f2}.pgrm-h{padding:5px 20px;color:#fff}.pgrm-h h4{font-size:19px;margin:0}.pgrm .pgrm-h{background-color:#0f3cb4}.bg-dorange .pgrm-h{background-color:#ffa152}.bg-dbd .pgrm-h{background-color:#5f6284}.col-crs{width:49.55%;margin-bottom:14px}.ftr-col-fw h3,.main-ftr h3{background-color:#0f3db8;padding:5px 12px;font-size:20px;color:#fff}section.pdi,table.tbl-pgrm tbody td,ul.appl-scl a{background-color:#f1f1f1}.main-ftr ul li{padding-bottom:8px}.blue-strip{background-color:#0f3db8;color:#fff;padding:6px 12px;margin:0;font-weight:400}.cl-6{width:49%}.bdr-bd:before{border:1px solid #494b64}.pgrm ul{padding:10px 20px;margin:0}.pgrm ul li{display:inline-block;margin-bottom:0!important}.pgrm ul li a{color:#626262!important}.bl-bd li,.bl-blue li,.bl-orange li{display:block;margin-left:10px;margin-top:10px;position:relative;font-weight:500}.table-striped tbody tr:nth-of-type(odd),ul.list-group.syllabus-list li:nth-child(odd){background-color:#b8ebff}ul.list-group.syllabus-list li:nth-child(2n){background-color:#f7f7f7}.view-more{border-radius:12px;padding:8px 15px;color:#0f3db8;font-size:17px;font-weight:700;background:#fff}.lt-blue{background:#a2d9f7}.lt-green{background:#b0cb1f}.bold-yellow{background:#fecc00}h2.gal-pad{padding-left:76px;padding-right:76px}.vdobox{width:100%;height:100%;background:rgb(0 0 0 / 5%);top:0}.card,.notice-card{-webkit-box-shadow:0 1px 5px rgba(0,0,0,.1);box-shadow:0 1px 5px rgba(0,0,0,.1);word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);padding:12px 15px}.notice,.panel-content ul li{border-bottom:1px solid #eee;padding-bottom:10px}.notice{padding-top:10px;margin-left:30px;margin-top:-33px;margin-bottom:15px}.notice p{color:#0f419f;font-weight:500}.notice a{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.notice a i{padding-right:6px;padding-top:5px;color:#36b4ee}.panel-bg{background-color:#36b3ed;padding:5px;border-radius:3px;color:#fff}.accordion-trigger,.resp-tabs-list li{background-color:#f2f2f2;cursor:pointer}.panel-content ul{margin-top:15px;margin-left:0;padding-left:15px;list-style:none}.panel-content ul li{padding-top:10px}.panel-content ul li:before{content:"\f0a4";font-family:"Font Awesome\ 5 Free";font-weight:600;padding-right:10px;color:#36b3ed}li.resp-tab-item.tglsubitem label,ul.resp-tabs-list li a{padding:10px 10px 10px 25px}.team-member{width:250px}.team-member img{width:200px}.resp-tabs-container{padding:0 30px}.resp-tabs-list{width:100%;padding:0;margin-bottom:1rem;border:1px solid #ccc}.resp-arrow,ul.resp-submenu li a{border-left:5px solid transparent}.resp-tabs-list i{margin-right:15px;font-size:24px}.resp-tabs-list li{border-bottom:1px solid #a7a7a7;line-height:25px;font-weight:400;font-size:15px;transition:.5s;-webkit-transition:.5s;-moz-transition:.5s;-o-transition:.5s;color:#fff;list-style:none}.resp-tabs-list li a.is-selected,.resp-tabs-list li a.is-selected:hover,.resp-tabs-list li a:hover,.tabs-panel.is-open>.accordion-trigger{background-color:#00419f;color:#fff}.addrs-info h3,.contact-info h3,li.map p{color:#fff}.resp-tab-item.tglsubitem.wht-arr:after,.resp-tabs-list li:hover:after,ul.appl-scl li:hover a span{color:#c1c1c1}li.resp-tab-item.sub-item{background-color:#d3d3d3;line-height:25px;font-size:14px}ul.implinks li ul li{white-space:nowrap}.resp-tab-content,.tabs-panel.is-hidden .content,[aria-expanded=true] .vert{display:none}.implinks>li{white-space:normal;line-height:20px!important}.implinks>li a{word-break:break-word;padding:10px 0}.resp-arrow{width:0;height:0;float:right;margin-top:27px;margin-right:15px;border-right:5px solid transparent;border-top:7px solid}ul.resp-tabs-list li a{color:#0e0e0e;display:block;font-weight:500}.tabs-tab-list{display:flex;list-style:none;margin:0;padding:0}.tabs-trigger:hover{border-bottom:0;color:#000}.tabs-trigger.is-selected,.tabs-trigger.is-selected:focus,.tabs-trigger.is-selected:hover{border-bottom:2px solid #000;color:#000}.tabs-panel .content{padding:0 20px;margin-top:20px}.is-initialized.tabs-allowed .tabs-panel{display:inherit}.accordion-trigger{display:flex;align-items:center;justify-content:space-between;padding:15px 20px;margin-bottom:2px;color:#000}.accordion-trigger-icon{pointer-events:none;display:inline-block;width:22px;height:22px}.label--close,.label--open{display:block;border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;padding:0;width:1px}.fixed-logo,.is-open .label--open,.label--close,.top-nav{display:none}.content.is-open{animation:.3s fadeIn;-webkit-animation:.3s fadeIn;-moz-animation:.3s fadeIn;-o-animation:.3s fadeIn;-ms-animation:fadeIn ease 0.3s}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-moz-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-o-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-ms-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.content.is-hidden{animation:.3s fadeOut;-webkit-animation:.3s fadeOut;-moz-animation:.3s fadeOut;-o-animation:.3s fadeOut;-ms-animation:fadeOut ease 0.3s}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-moz-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-o-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-ms-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.resp-tab-item.tglsubitem:after{content:"▼";color:#000;position:absolute;top:10px;right:0;width:20px}.resp-tab-item.tglsubitem.tglleft:after{content:"▲"}ul.resp-submenu{margin:0;padding:0;right:auto;z-index:1;display:none}ul.resp-submenu li a{padding-left:20px;padding-right:15px;white-space:wrap}.resp-tab-content-active{display:block;background:#e7edee;padding:0 25px 25px}.content h2,.vis_mis h2{margin-bottom:20px;font-size:35px;font-weight:300}.content h2 span,.vis_mis h2 span{font-weight:400;text-transform:uppercase;line-height:30px;color:#0f3db8}.vis_mis ul{margin:0;padding:0}.vis_mis ul li{padding-left:30px;margin-bottom:15px}.vis_mis ul li:before{content:"";top:5px;left:0;width:20px;height:20px;background-image:url(../images/tick.png);background-position:center;background-size:15px}.tbl-pgrm th,table.tbl-pgrm{border:1px solid #a9a9a9!important}table.tbl-pgrm tbody td{border:2px solid #fff}thead.tbl-thead tr th{color:#000;border:0 solid #000!important}table.tbl-appl tr td,table.tbl-appl tr th{border:2px solid #fff!important}thead.tbl-thead tr th:first-child,thead.tbl-thead tr th:nth-child(3){background-color:#7fd2f4}thead.tbl-thead tr th:nth-child(2){background-color:#96dafd}thead.tbl-thead tr th:nth-child(4){background:#96dafd}thead.tbl-thead tr th:last-child{background:#7fd2f4}table.tbl-pgrm tbody tr td a{transition:none}table.tbl-pgrm tbody tr:hover td a:first-child{color:#fff!important}table.tbl-pgrm tbody tr:hover td:nth-child(2){background-color:#2fa0d8;color:#fff}table.tbl-pgrm tbody tr:hover td:nth-child(3){background-color:#2b94ca;color:#fff}table.tbl-pgrm tbody tr:hover td:last-child{background-color:#2787c7;color:#fff}table.tbl-appl thead tr{background:#37b5ed;color:#fff}table.tbl-appl tbody tr{background:#f1f1f1}table.tbl-appl tr td{vertical-align:middle}.faculty-wrap{display:flex;flex-wrap:wrap}.faculty-member{width:100%;margin:10px 5px;display:inline-flex;cursor:default;border:1px solid #eee;background-color:#f2f2f2}.faculty-info,.faculty-member:hover .faculty-info{border-left:3px solid #0f3db8}.faculty-member a{display:flex;color:inherit;width:100%}.faculty-member:hover{-webkit-box-shadow:10px 11px 23px 5px #d1d1d1;-moz-box-shadow:10px 11px 23px 5px #d1d1d1;box-shadow:10px 11px 23px 5px #d1d1d1}.faculty-member .img-faculty{width:120px;padding:0 10px;background-color:transparent}.img-faculty figure{width:100px;height:100px;text-align:center;margin:auto;border-radius:50%;background-color:#ececec;border:3px solid;display:block}.faculty-info{width:100%;padding:5px 0 5px 14px;background-color:#fff}.faculty-info h3{font-size:18px;font-weight:600;color:#00419f}.faculty-info h4{font-size:15px;font-weight:400}.faculty-info p{margin:0;font-size:15px;text-align:left;display:block;font-weight:600}.faculty-info p span{display:block;font-weight:400;padding-bottom:6px;word-break:break-word}.activity table,.tblcount table{counter-reset:rowNumber}.activity table tbody tr,.tblcount table tbody tr{counter-increment:rowNumber}.activity table tbody tr td:first-child:before,.tblcount table tbody tr td:first-child:before{content:counter(rowNumber)}.thead-blue{background-color:#0f3db8;color:#fff}#error_message{display:none;color:red;font-size:12px;bottom:27px;left:75px}.rvw-img{width:60px;height:60px;margin-right:10px;border:5px solid #ccd3db;border-radius:50%;background-image:url(images/user.png);background-position:center;background-size:cover}.rvw-img img{width:60px;height:auto}.rvw{-webkit-box-shadow:0 1px 5px rgb(0 0 0 / 10%);box-shadow:0 1px 5px rgb(0 0 0 / 10%);background:#fff;padding:12px 15px;border-radius:.25rem;border-left:3px solid #4f96f7}.rvw-dt{font-size:15px;color:#868686}.rvw-dt span{color:#0d8fff}.rvw-rate{font-size:14.5px;color:#868686}.count-rvw span{border:1px solid #ccc;padding:4px;border-radius:15%;background:#4f96f7;color:#fff}.review label{font-size:16px}.review .fa-star{font-size:21px;color:#999;margin-right:10px}.display-review{background-color:#f6f5f5;padding:30px 10px}.review .fa-star:hover{cursor:pointer}.gmap-contain iframe{width:100%;height:430px;border:0}.allblog,.info{margin:40px 0}.act-wrap{padding-bottom:45px}.activity-item{padding:12px}.activity-img{background-color:#eee;margin-bottom:15px}.activity{-webkit-box-shadow:0 12px 15px -4px rgba(0,0,0,.47);-moz-box-shadow:0 12px 15px -4px rgba(0,0,0,.47);box-shadow:0 12px 15px -4px rgba(0,0,0,.47)}a.lnk-more{color:#002c6c;font-size:15px;font-weight:500;padding:0 3px;border-radius:6px;text-decoration:underline}.view-all{bottom:0;width:100%;background:#fff}.std-clubs{background:#e5f4fd}.std-welfare{background:#f8eed3}.std-campus{background:#ebecec}.std-wellness{background:#fdebd4}.std-clubs .point,.std-wellness .point{color:#393185}.std-headr{background-color:#a2d9f7}.welfare-headr{background-color:#dcc78c}.wellness-headr{background-color:#e7bf8e}.campus-headr{background-color:#727271}.campus-headr h2,.std-headr h2,.welfare-headr h2,.wellness-headr h2{color:#393185;font-size:23px;font-weight:800}.point-brown:before{background-image:url(../images/bullet-brown.svg)}.photo-galery,.vdo-galery{position:relative;margin:8px 0}.photo-galery:hover .pic-zm,.vdo-zm{opacity:1}.vdo-galery:hover .vdo-zm{opacity:.3}.photo-galery img{width:100%;height:175px;object-fit:cover}.pic-zm,.vdo-zm{position:absolute;width:100%;height:100%;top:0;background-color:rgb(0 0 0 / 60%);opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.pic-zm a{width:90px;height:90px;display:block;margin:0 auto;top:50%;transition:.3s}.pic-zm a:before,.vdo-zm a:before{content:"\f06e";font-size:45px;color:#12b4ff;position:absolute;top:50%;transform:translateY(-50%);width:65px;height:65px;left:0;right:0;margin-left:auto;margin-right:auto}.form-page .form-group label,.imgInp{margin:5px auto}.vdo-zm a:before{content:"\f144";font-size:80px;width:80px;height:85px}.img-hover:hover .std-name{bottom:15px}.std-name{bottom:-35px;background:rgb(0 0 0 / 82%);width:100%;padding:5px;-webkit-transition:.3s;-moz-transition:.3s ease-in-out;-o-transition:.3s ease-in-out;-ms-transition:.3s ease-in-out;transition:.3s ease-in-out}.frm-email,.frm-mob,.frm-name{background-position:left}.ltblue-bx,.nvblue-bx{width:30%;height:100%;top:0;position:absolute}.nvblue{background-color:#0050a7;padding:40px 0}.ltblue{background-color:#0a63c4;padding:40px 0}.nvblue-bx{left:0;background-color:#1450a7}.ltblue-bx{right:0;background-color:#1c63c4;z-index:-1}.addrs-info{padding:10px 30px}.frm-email,.frm-mob,.frm-msg,.frm-name{padding-left:30px;background-repeat:no-repeat}input.form-btn{padding:5px 30px;background-color:#f77a10;border:0;color:#fff;font-family:Roboto,sans-serif;font-weight:700;font-size:19px;transition:.3s linear;-webkit-transition:.3s linear}.bdr-lt,.card-body>blockquote{border-left:5px solid #36b3ed}input.form-btn:hover{background-color:#fff;color:#f77a10}form.contact-form input.form-control,form.contact-form textarea.form-control{background-color:transparent;border:0;border-bottom:1px solid #ccc;border-radius:0;color:#6eb0f8;margin-bottom:15px;resize:none}form.contact-form input.form-control:focus,form.contact-form textarea.form-control:focus{box-shadow:none}form.contact-form{margin-top:20px;padding-right:5%}.frm-name{background-image:url(../images/user.svg);background-size:20px}.frm-mob{background-image:url(../images/mobile.svg);background-size:12px}.frm-email{background-image:url(../images/email.svg);background-size:20px}.frm-msg{background-image:url(../images/note.svg);background-position:left top 11px;background-size:17px}.contact-form .form-control::-webkit-input-placeholder{color:#6eb0f8}.contact-form .form-control::-moz-placeholder{color:#6eb0f8}.contact-form .form-control:-ms-input-placeholder{color:#6eb0f8}.contact-form .form-control:-moz-placeholder{color:#6eb0f8}.addrs-info ul{padding:10px 0 0}.addrs-info ul li{margin:15px 0;padding-left:40px}.addrs-info ul li.map:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTEyIDJDOC43IDIgNiA0LjcgNiA4YzAgNS4yIDYgMTEuMSA2IDExLjFzNi02IDYtMTEuMWMwLTMuMy0yLjctNi02LTZtMCAzLjljMS4xIDAgMi4xIDEgMi4xIDIuMSAwIDEuMi0uOSAyLjEtMi4xIDIuMVM5LjkgOS4xIDkuOSA4YzAtMS4yIDEtMi4xIDIuMS0yLjFtLTUuMiA5LjJjLTEuMy4zLTIuMy42LTMuMiAxLS40LjItLjguNS0xLjEuOHMtLjUuOS0uNSAxLjRjMCAuOC41IDEuNCAxLjEgMS44czEuMy43IDIuMiAxYzEuOC42IDQuMS45IDYuNy45czQuOS0uMyA2LjctLjhjLjktLjMgMS42LS42IDIuMi0xczEuMS0xIDEuMS0xLjhjMC0xLS44LTEuNy0xLjYtMi4ycy0xLjktLjgtMy4yLTFsLS4zIDJjMS4xLjIgMiAuNSAyLjYuOC40LjIuNS40LjYuNGwtLjIuMmMtLjMuMi0uOS41LTEuNi43LTEuNy40LTMuOS43LTYuMy43cy00LjYtLjMtNi4xLS44Yy0uNy0uMi0xLjMtLjUtMS42LS43bC0uMi0uMmMuMS0uMS4yLS4yLjUtLjQuNi0uMyAxLjUtLjYgMi43LS44eiIvPjxwYXRoIHN0eWxlPSJmaWxsOm5vbmUiIGQ9Ik0wIDBoMjR2MjRIMHoiLz48L3N2Zz4=)}.addrs-info ul li.mob:before{background:url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjgwMCIgd2lkdGg9IjgwMCIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0ibTQyNi43IDQ1My44LTM4LjEtNzkuMWMtOC4yLTE2LjktMTguOC0yOS4yLTM3LjEtMjEuN2wtMzYuMSAxMy40Yy0yOC45IDEzLjQtNDMuMyAwLTU3LjgtMjAuMmwtNjUtMTQ3LjljLTguMi0xNi45LTMuOS0zMi44IDE0LjQtNDAuM2w1MC41LTIwLjJjMTguMy03LjYgMTUuNC0yMy40IDcuMi00MC4zbC00My4zLTgwLjZjLTguMi0xNi45LTI1LTIxLTQzLjMtMTMuNS0zNi42IDE1LjEtNjYuOSAzOC44LTg2LjYgNzMuOS0yNCA0Mi45LTEyIDEwMi42LTcuMiAxMjcuN3MyMS42IDY5LjEgNDMuMyAxMTQuMmMyMS43IDQ1LjIgNDAuNyA4MC43IDU3LjggMTAwLjggMTcgMjAuMSA1Ny44IDc1LjEgMTA4LjMgODcuNCA0MS40IDEwIDg2LjEgMS42IDEyMi43LTEzLjUgMTguNC03LjIgMTguNC0yMy4xIDEwLjMtNDAuMSIvPjwvc3ZnPg==) 0 0/20px no-repeat}.addrs-info ul li.mail:before{background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iODAwIiBmaWxsPSIjZmZmIiB2aWV3Qm94PSIwIDAgNTIgNTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGQ9Ik0yNC45IDMwLjFjLjYuNiAxLjUuNiAyLjEgMGwyMi42LTIxYy40LS44LjMtMi4xLTEuMy0yLjFsLTQ0LjcuMWMtMS4yIDAtMi4yIDEuMS0xLjMgMi4xeiIvPjxwYXRoIGQ9Ik01MCAxNy4zYzAtMS0xLjItMS42LTItLjlMMzAuMyAzMi43Yy0xLjIgMS4xLTIuNyAxLjctNC4zIDEuN3MtMy4xLS42LTQuMy0xLjZMNC4xIDE2LjRjLS44LS43LTItLjItMiAuOUMyIDE3IDIgNDAgMiA0MGMwIDIuMiAxLjggNCA0IDRoNDBjMi4yIDAgNC0xLjggNC00eiIvPjwvc3ZnPg==) 0 0/20px no-repeat}.addrs-info ul li:before{content:"";position:absolute;top:2px;left:0;color:#fff;width:25px;height:25px;background-size:20px;background-repeat:no-repeat}li.mail a,li.mob a{color:#fff;display:inline-block}li.mail a:hover,li.mob a:hover{color:#80bdff}ul.follow li a:hover{opacity:.7}.rec-bg{background-color:#f5f5f5}.ht75{height:75px}.careerops{background-image:url(../images/career-banner.jpg);background-repeat:no-repeat;background-position:center center;background-size:cover}.addrs span{color:#0054aa}.bgblue{background-color:#284fb9}.bg-grey{background-color:#edecea}ul.appl-scl a{display:block;padding:10px 0;text-align:left;border-radius:25px;z-index:1}ul.appl-scl a span{padding-left:70px;color:#484848;font-weight:500}ul.appl-scl li{width:31%;display:inline-block;margin:15px 1%}ul.appl-scl a:hover{background:#37b5ed}ul.appl-scl li:after{position:absolute;content:"";bottom:15px;right:20px;width:180px;height:14px;background:#777;border-radius:100%;box-shadow:0 22px 10px #777;-webkit-box-shadow:0 22px 10px #777;-moz-box-shadow:0 22px 10px #777;transform:rotate(6deg);-webkit-transform:rotate(6deg);-moz-transform:rotate(6deg);-o-transform:rotate(6deg);-ms-transform:rotate(6deg)}ul.appl-scl li:hover a div{background:#0054aa}a.wbs .scl-ico{background-image:url(../images/website.svg)}a.wbs:hover div.scl-ico{background-image:url(../images/website-wht.svg)}a.fb .scl-ico{background-image:url(../images/fb.svg)}a.fb:hover div.scl-ico{background-image:url(../images/fb-wht.svg)}a.whtsapp .scl-ico{background-image:url(../images/whtsapp.svg)}a.whtsapp:hover div.scl-ico{background-image:url(../images/whtsapp-wht.svg)}a.twt .scl-ico{background-image:url(../images/twt.svg)}a.twt:hover div.scl-ico{background-image:url(../images/twt-wht.svg)}a.pint .scl-ico{background-image:url(../images/pint.svg)}a.pint:hover div.scl-ico{background-image:url(../images/pint-wht.svg)}a.mail .scl-ico{background-image:url(../images/mail.svg)}a.mail:hover div.scl-ico{background-image:url(../images/mail-wht.svg)}a .scl-ico{width:60px;height:60px;display:inline-block;position:absolute;z-index:2;padding:14px;background:#f1f1f1;background-position:center center!important;background-repeat:no-repeat!important;background-size:35px!important;border-radius:50%;top:-7px;left:0;-webkit-box-shadow:3px 2px 2px 0 rgba(50,50,50,.4);-moz-box-shadow:3px 2px 2px 0 rgba(50,50,50,.4);box-shadow:3px 2px 2px 0 rgba(50,50,50,.4);-webkit-box-shadow:3px 2px 9px 0 rgba(50,50,50,.4);-moz-box-shadow:3px 2px 9px 0 rgba(50,50,50,.4);-o-box-shadow:3px 2px 9px 0 rgba(50,50,50,.4);box-shadow:3px 2px 9px 0 rgba(50,50,50,.4)}ul.d2 li{width:50%;float:left}.faq .content h2{font-size:35px}.ziehharmonika.faq-acrd h3{font-size:17px;font-weight:400}.ziehharmonika.faq-acrd h3.active{background:0 0;color:#0f419f}.ziehharmonika.faq-acrd .faq-ans{padding-left:2.6rem}.ziehharmonika.faq-acrd .vis_mis.faq-ans{padding-right:10px}.resp-tab-item.faq-active a{background-color:#00419f;border-left:4px solid #f77a10}.dept-nm{color:#0f419f}.ziehharmonika.faq-acrd{-webkit-box-shadow:3px 3px 5px 0 rgba(50,50,50,.6);-moz-box-shadow:3px 3px 5px 0 rgba(50,50,50,.6);box-shadow:3px 3px 5px 0 rgba(50,50,50,.6)}.bdr-sky{border-bottom:2px solid #000}.press-hvr:hover{background-color:#0f419f}.card-body.bg-sky.press-hvr{height:65px;padding:10px 8px}#srvc .bdr-lt{border-left:0;padding-left:0!important}.upload-img{width:200px;height:230px}.imgInp{display:inline-block!important;width:200px;text-align:left}.mt3{margin:10px auto}.table tbody td{background:0 0}.table thead th{text-transform:unset}input[type=date].form-control{line-height:20px}.tbl-response{overflow-x:auto}.btm-lw{position:absolute;bottom:0;right:10px}.info .card{height:345px}.mr-move{white-space:normal!important}.card-body>blockquote{padding:10px 14px;background:#f2f2f2;border-top:1px solid #ddd;border-bottom:1px solid #ddd;border-right:1px solid #ddd}.card-body>blockquote h4{font-size:18px;margin:0;font-weight:600;color:#000}.card-body i{padding-right:5px}.bdr{border-top:1px solid #eee}.pad{padding:5px;color:#000}.sitemap ul li{margin:6px 0}ul.central-link li ul{padding-left:10px;margin:5px 1px;border-left:2px solid #ccc}li.parent-link>a{background:#2196f3;padding:3px 6px;color:#fff;display:block}ul.central-link li ul li{background:#eee;padding:2px 5px}.asst>a{display:block;right:0;font-size:30px}h5.blue-strip{font-size:1.2rem}@media screen and (min-width:320px){.header-slider,.inner-banner,main{margin-top:65px}}@media screen and (min-width:768px) and (max-width:1199px){.box{height:314px}}@media screen and (min-width:768px){.header-slider,.inner-banner,main{margin-top:80px}}@media screen and (min-width:1025px){.res-flex{display:flex!important;display:-ms-flexbox!important}}@media screen and (min-width:1080px){.header-slider,.inner-banner,main{margin-top:90px}}@media screen and (min-width:1025px) and (max-width:1199px){.box small{font-size:14px}.socials{padding-top:0}}body,html{width:100%;scroll-behavior:smooth}ul.resp-submenu{left:0;top:100%;width:100%}.placement-corporate{padding:20px 0 40px}@media only screen and (min-width:1600px){.accred-img span,.activity-date,.box p span,.card-bg-green h5,.faculty-info h3,.pb-item a span,.values-text p,.vis_mis p,.vis_mis ul li,body,h6,p{font-size:20px}.h3,h3{font-size:2rem}.container{max-width:1560px}.container.cntr{max-width:1430px}.pdx-5{padding-left:70px;padding-right:70px}.top-nav .navbar{padding:0 0 0 35px!important}.top-nav .navbar ul.navbar-nav li.nav-item.dropdown>a::after{top:16px}.top-nav .navbar-dark .navbar-nav .nav-link{padding:8px 16px!important;font-size:20px}.top_section .navbar-expand-lg .navbar-nav .dropdown-menu{top:42px;min-width:250px}.top_section .navbar-expand-lg .navbar-nav .dropdown-menu li.nav-item.dropdown a{padding-left:10px!important}.cs-megamenu{top:50px}.top-nav:after{height:46px}.header-info{margin-left:19px}.socials{margin-left:20px}.socials>span{margin-top:0;font-size:14px;padding-bottom:14px}.socials ul li a{font-size:17px;line-height:27px;width:26px;height:26px}.search a{padding-top:5px;padding-left:15px}.addrs-info ul li a,.addrs-info ul li p,.announce-info p,.evt-wrap h3,.search a i{font-size:23px}.search a:before{left:-3px}.tgl-dwn::after{right:10px!important}h2.caption-headr{font-size:50px;padding-top:26px;line-height:50px}h2.caption-headr:before{left:-35px}.placed-section h5,.progs h6{font-size:31px}.progs h6 span{font-size:18px;padding:1px 15px;top:-5px}.apply-book h3,.pb-item a,.placed-happy h4,.placed-section p{font-size:32px}.std-plcaed img{width:260px}.std-contain .std-info img{width:175px}.feature-bx div h4{font-size:22px;padding-top:20px}.feature-bx div p{font-size:17px!important;margin-bottom:20px}.adms h2,.adms h3,.appl-h1 h2,.content h2,.vis_mis h2{font-size:40px}.adms h2{margin-top:45px}.adms h3 span{font-size:50px;line-height:30px}.adms a{font-size:28px;margin:10px 0}.card-bg-green img{width:195px}.card-bg-green small{font-size:15px;margin-top:15px}.card-bg-green h3{font-size:29px;line-height:20px}.card-bg-green p{font-size:16px}.banner-info p,.btn-comon,.course-enq h5 i,.dg-bx div a:last-child i,.dg-bx div a:last-child span,.evt-wrap p,.faculty-info h4,.faculty-info p,.ln span,.news-infos p,.resp-tabs-list li,.review label,.rvw .media-body p,.rvw-dt,.rvw-rate,.table td,.table th,a.lnk-more,li.resp-tab-item.sub-item a,ol.olnum li{font-size:18px}.accred-ttl h4,.asst h5,.blue-strip,.broucher a,.bx p,.frm-submit .btn,.main-ftr h3,.pgrm-h h4,.school_study_item_con h3,.scl-intro p,.thead-darkblue td{font-size:25px}section.best-box{top:-36px}.feature-bx img{width:80px;height:80px}.gl-txt{padding:20px 30px 65px}.gl-txt h3{font-size:36px;line-height:40px}.apply-now .txt-blk,.gl-txt>p{font-size:20px!important}.gl-cl a span{padding:10px 14px}.glance-headr h2:after,.glance-headr h2:before{width:28%}.accred .col p{line-height:20px}.blue-headr h2{font-size:31px;padding:18px 25px}.view-more{padding:10px 20px;font-size:21px}h2.gal-pad{padding-left:85px;padding-right:85px}.video-tab{height:unset!important}.ytb-item a:after{background-size:60px}.bx{padding:51px 40px}.box p{font-size:21px;line-height:28px}.dg-bx div a.text-dark,.values-text p{line-height:25px}.form-control,.media-body h5{font-size:24px}.rvw-img{width:75px;height:75px;margin-right:20px}.course-enq h5{font-size:30px;margin-bottom:30px}.course-enq{left:25px}.values-text{padding:70px 30px}.values-text h2{font-size:50px;margin-bottom:15px}.blog-info p,.dr-ttl p,.news-dt,.ziehharmonika.faq-acrd h3{font-size:22px}.apply-book{margin-top:-75px}.apply-now{right:-55px!important}.accred-items{margin:20px 23px}.accred-img img{width:70px;padding-right:10px}.accred-img{width:270px;padding-top:15px}.news-item{padding:120px 55px}.news-dt{width:85px;height:82px;padding:15px;right:40px}.news-infos h4{font-size:25px;margin-bottom:25px}.dr-publication{padding-left:30%}.pb-item{width:227px;height:227px}.blue-strip{background-color:#0f3db8;color:#fff;padding:12px;margin:0;font-weight:600}.activity-item{padding:18px}.dg-bx div a:first-child span,.dg-bx h5,.mous-text h4{font-size:26px}.apply-book p,.scl-item p,.std-texts div h5,.std-texts p,section.pdi .container p{font-size:19px}.std-texts p{line-height:27px}.std-texts p:after{width:225px}.rating{width:170px}.rating span{font-size:15px}.appl-h1 h1,.banner-info h1,.campus-headr h2,.std-headr h2,.welfare-headr h2,.wellness-headr h2{font-size:30px}.blog-contain .blog-img{width:320px}.blog-info{width:300px}.learn-objective li{font-size:21px!important}.team-member{width:280px}.notice{margin-left:40px;margin-top:-40px;margin-bottom:20px}.content img.img-fluid.border-primary.rounded{margin-bottom:45px}.vis_mis h2:before{top:6px}ul.resp-tabs-list li a{padding-left:35px}.scl-item img{width:50px}.scl-ttl{font-size:45px}.dept-nm{font-size:21px;font-weight:500;color:#0f419f}.resp-tabs-list liinput.form-btn{padding:5px 45px;font-size:25px}.scholr{min-height:220px}.mail-success div i.fa-check-circle{font-size:80px}h1.thnk{font-size:60px}.pros-ico{font-size:35px}}@media only screen and (min-width:1200px){.top-nav .navbar{padding:0 0 0 20px}.top-nav .navbar-dark .navbar-nav .nav-link{padding:8px 12px}.video-tab{height:unset}.apply-now{bottom:50%;right:-40px}.apply-now .txt-blk{padding:9px 10px;font-size:13px}}@media (min-width:768px){.responsive-tab-wrapper{padding:5px}.tabs-allowed .accordion-trigger,.tabs-allowed .tabs-panel,.tabs-allowed .tabs-panel.is-hidden{display:none}.tabs-allowed .tabs-trigger{display:block}.tabs-allowed .tabs-tab-list{margin-bottom:-2px}.tabs-panel .content{margin-top:0}}@media (min-width:481px){.adms-min{display:none}}@media only screen and (max-width:1400px){.img-left .img-fluid{width:auto;height:620px;object-fit:cover}.bx{padding:57px 27px}}@media only screen and (max-width:1300px){.img-left .img-fluid{width:auto;height:620px;object-fit:cover}.card-bg-green img{width:145px}.bx{padding:57px 27px}}@media only screen and (max-width:1250px){.card-contents{width:73%}}@media only screen and (max-width:1200px){.img-left{height:620px}.img-left .img-fluid{height:617px}h2.caption-headr{padding-top:0;font-size:28px}.progs h6,.progs ul li{font-size:23px}.gl-cl p{padding:7px;font-size:14px}.point{font-size:16px;line-height:inherit}.bx{padding:61px 15px;background-size:180px}.bx p{font-size:17px}}@media only screen and (max-width:1199px){.card-bg-green small{font-size:10px}.cap-name h3,.card-bg-green h3{font-size:18px}.asst h5{font-size:17px}.ftr-info p,.ftr-info span,.q-links ul li a{font-size:13px}.slider-badges img{width:120px}.school_study_item_con h3{font-size:16px}.accreditation .d-flex{flex-wrap:wrap}.accreditation .d-flex .accred-items:first-child{width:100%}.accred-ttl{text-align:center}.accred-items::before{top:0;height:95px}.accreditation .d-flex .accred-items:nth-child(2):before{content:none}.blog-ttl h2,.dr-ttl h2,.explore-ttl h2,.school-study .school-title h2,.student-ttl h2,.top-company .comp-title h1,.values-text h2{font-size:30px}.banner-wrap{min-height:210px}.banner-wrap img{width:auto;height:210px;object-fit:cover}.apply-now{bottom:74px;right:-45px}.apply-now .txt-blk{padding:13px 15px;font-size:14px}.apply-on .btn-comon{padding:6px 11px;font-size:16px}.activity-img{width:100%;height:auto}.dr-publication{padding:0}.pb-item{width:190px;height:190px;padding:35px}.pb-item a{font-size:25px}.pb-item a span{font-size:15px}.news-item{padding:125px 60px}.news-dt{top:12px;right:45px}.img-faculty figure{width:85px;height:85px}.apply-book h3{font-size:24px}.point,h3.text-white{font-size:24px;line-height:34px}.scholr{min-height:205px}}@media only screen and (max-width:1100px){.img-left{height:620px}.img-left .img-fluid{width:auto;height:620px;object-fit:cover}.std-card{margin-top:35px}.card-contents{width:80%}}@media only screen and (max-width:1099px){.announce{height:260px}}@media only screen and (max-width:1080px){.footer-copyright{margin-bottom:calc(104px - 55px)}}@media only screen and (max-width:1024px){.socials{position:fixed;width:auto;top:24%;right:-100%;background:#fbf8f8;padding:5px 0;border-top-left-radius:20px;border-bottom-left-radius:20px;transition:.5s;z-index:10}.socials.scl{right:40px;transition:.5s}.res-flex{padding-left:5px!important;padding-bottom:0!important}.feature-bx div h4{font-size:15px}#main-slider ul.slick-dots{width:57px;left:0;right:0;margin:0 auto}.box div span{line-height:1}.socials::before{content:"";position:fixed;width:40px;height:40px;right:0;margin-top:-5px;background-color:#ffc804;background-image:url(../images/socials.svg);background-position:center center;background-repeat:no-repeat;background-size:15px;z-index:6;cursor:pointer}.search{margin-right:15px}.adms{padding:20px 0}.values-text h2{font-size:30px}}@media only screen and (max-width:991px){.blog-info,.bottom_nav_sec .container{position:relative}.clients-text,.mous-text{text-align:center}.box p{font-size:14px;bottom:0}.course-enq h5{font-size:16px;margin-bottom:5px}.top_section .navbar-expand-lg .navbar-nav .dropdown-menu{position:relative!important;display:none;top:0!important;left:3px;width:245px;border:0;background-color:#19a5db!important}.search{margin-left:55px;margin-right:0}.collapse-button,.collapse-button:focus,.collapse-button:hover{background-color:#00409e}.adms h2,.apply-book h3,h2.caption-headr{font-size:22px}h2.caption-headr:before{left:-15px}.slider-info{width:320px}.school-study .school-title h2{margin-bottom:20px}.btn-comon{width:185px;font-size:15px;padding:8px 15px}.img-left .img-fluid{width:100%;height:auto}.resp-accordion-closed,.socials>span{display:none!important}.socials,.socials::before{top:33%}.card-bg-green img{width:125px;top:-41px}.std-card{margin-top:-27px}.glance-headr h2::after,.glance-headr h2::before{width:11%}.card-contents{width:95%}.progs h6,.progs ul li{font-size:20px}.progs ul{padding-left:5px}section.best-box{top:0;padding-top:15px}.gl-col{width:49%}section.our-values{background-size:cover}.news-item{width:450px;height:450px;margin:40px auto}.trdcent{margin:1% auto;float:none;clear:both}.blog-contain .blog-img,.blog-img img,.blog-info,.clients-text,.faculty-member,.school_study_item_bottom img,.school_study_item_top img{width:100%}.dr-ttl,.values-text{padding-top:0}.accred-items{margin:20px 4px}.accred-img{width:164px}.accred-img img{width:45px}.accred-img span{font-size:14px}.accred-items::before{left:-10px}.mous-text h4{font-size:20px;margin-bottom:30px}.announce{height:265px}.announce-info p,.scl-item p{font-size:15px}.dr-publication{margin-top:40px;align-items:center;justify-content:center}.pb-2col{display:flex;flex-direction:row!important}.blog-contain{margin:10px 0}.banner-info h1,.our-blog .blog-ttl h2{font-size:25px}.blog-info p,.point{font-size:24px}h3.resp-accordion{display:block;padding-left:25px}.apply-on{padding:15px 0}.wrkshop .img-tab.w-50,.wrkshop .vis_mis.w-50{width:100%!important}.banner-info p span{display:initial}.scl-item{width:auto;margin:0 15px;padding:15px 5px}.prod-tab-content{padding:10px}.pgrm{flex:100%;max-width:100%;margin:5px 0!important}ul.appl-scl li{width:47%}.bdr-bd:before,.bdr-blue:before,.bdr-orange:before{width:100%;left:0}.bdr-bd .col-lg-8 h4:after,.bdr-blue .col-lg-8 h4:after,.bdr-orange .col-lg-8 h4:after{content:none}.pd-set{padding:20px 0}.footer .container .row>div:first-child{order:6;text-align:center;border:0;padding:15px 0;border-top:1px solid}.footer .container .row>div:last-child{order:5}.footer .container .row>div:nth-child(5){order:4}.contact-form .col-md-4,.my-5 .col-md-3,.my-5 .col-md-9,.school .col-md-5,.school .col-md-7,.tabber .col-md-4,.tabber .col-md-8{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.my-4 .col-md-8{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%;margin-top:30px}.gmap-contain iframe{height:350px}.chek1,.chek2,.form-page .form-group,.form-page .form-inline{text-align:left}.form-page .lbl-left{display:block;text-align:left;margin:10px auto}.tabs-panel .content{padding:0 10px}h3.text-white{font-size:22px;line-height:32px}.placement-corporate{padding:0 0 20px}.placement-vismis.my-5 .col-md-3{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.placement-vismis{padding-bottom:0}.events .evt-bg{padding:15px}.apply-book{margin-top:35px}.school_study_item_bottom,.school_study_item_top{width:auto;float:none;margin:0}}@media only screen and (max-width:850px){.adms{margin-top:-65px}.card-bg-green small{font-size:9px}.card-bg-green h3,.card-bg-green h5{font-size:15px}.card-bg-green img{width:95px;top:-25px;-ms-transform:rotateZ(0);transform:rotateZ(0)}.asst h5{font-size:14px}}@media only screen and (max-width:767px){.course-enq h5,.glance-headr h2,.scl-ttl{font-size:25px}.mous .row div,.rec-bg .row .col-lg-9,.school h2,.search i,.vdo-ttl{text-align:center}.search{margin-left:auto}.search-field{width:85%;height:40px;top:0}.form-control{padding:5px 25px;height:40px}.socials{bottom:calc(1% + 90px)}.course-enq h5{margin-bottom:18px}#main-slider .slick-slide picture img{width:100%;max-width:unset;height:270px;object-fit:cover;object-position:left}.img-left .img-fluid{height:620px}.deb-intro{left:5%;bottom:5%}.vdo-ttl{flex:0 0 100%}section.best-box{padding-bottom:25px}.accred-items::before,.glance-headr h2::after,.glance-headr h2::before{content:none}.blue-headr h2{font-size:24px;padding:9px}.rcg,.ytb-item{width:50%}.card-contents,.cl-6,.col-crs,.faculty-info,.gl-col,.ltblue-bx,.w-30{width:100%}.alumni-bg,.alumni-bg div{background:#fff}.mob-adms{background:rgb(32 39 117 / 87%)}.client-img{background:#f2f2f2;padding:10px}.client-img img{height:150px;object-fit:contain}.clnt-texts{width:100%!important;padding-bottom:10px}.socials ul{padding:0 8px}.accred-ttl h4,.our-blog .blog-ttl h2{font-size:21px}.accred-img{width:220px}.accred-items{margin:6px 4px}.accreditation .d-flex{justify-content:center}.blog-ttl h2,.dr-ttl h2,.explore-ttl h2,.school-study .school-title h2,.student-ttl h2,.top-company .comp-title h1,.values-text h2{font-size:22px}h2.caption-headr::after{width:65%}section.school-study{padding-bottom:0}.mous .row div{margin:10px 0}.youtube-vdos .d-flex{flex-wrap:wrap}.banner-info p{font-size:13px}.implinks{display:block!important}h3.resp-accordion{line-height:47px;font-size:16px}.resp-arrow{margin-top:20px}.vis_mis h2::before{width:42px;height:42px}.resp-tabs-container{padding:0 5px}section.our-blog{padding:40px 0}.faculty-member{margin:10px 0;border:1px solid #37b4ee;border-radius:10px;overflow:hidden}.card,.col-crs,.ftr-col{margin-bottom:15px}.faculty-member .img-faculty{width:25%}.tabs-panel .content{padding:0 12px}.content h2,.vis_mis h2{font-size:24px;padding-top:10px}.nvblue-bx{width:100%;height:59%}section.scl-points{padding:20px 0}.apply-book{margin-top:30px}ul.resp-submenu{position:relative;left:0}ul.resp-submenu li a{padding-left:20px}form.contact-form{padding-right:0}.nvblue{padding-top:15px;padding-bottom:0}.ltblue{padding:14px 0}.contact-form .my-4{padding:10px 0!important;margin:10px auto!important}.footer .container .row>div:nth-child(2){order:1;padding-bottom:0}.footer .container .row>div:nth-child(3){order:3;padding-top:21;padding-left:15px}.footer .container .row>div:nth-child(4){order:2;padding-bottom:0}.blog-info p,.program .container .row div .ziehharmonika h3{font-size:16px}.program .container .row div .ziehharmonika h3:before{margin:0}ul.appl-scl li{width:98%}.search{width:100%;text-align:right;position:fixed;bottom:calc(1% + 130px);right:0;top:auto;z-index:9}.search a:before{display:none}.search i{background:#f77a10;width:40px;height:40px;line-height:40px;color:#fff}.tabs-panel .content .img-fluid.rounded{margin-bottom:25px}.bl-bd,.bl-blue,.bl-orange{padding-left:5px}.point{font-size:20px;padding-top:5px}.bdr-lt{margin:15px}.dg-bx div a.text-dark{line-height:inherit}table.tbl-appl tr td.phn-rs{width:300px}h1.thnk{font-size:30px}.notice{margin-left:30px}.combat-covid .text-light{font-size:22px;line-height:32px}.banner-info{padding:0}.table td,.table th{vertical-align:middle;font-size:14px}.service p{font-size:16px;line-height:26px}.socials::before{top:40%}.socials{top:39%;bottom:inherit}.pdx-5{padding:3px 15px}.point{margin-bottom:10px}.tabber h4{font-size:18px;line-height:28px}.ziehharmonika h3{font-size:16px!important;line-height:26px!important}.bic-footer img{height:130px;object-fit:cover}.career .pt-4 b,.ziehharmonika.faq-acrd .faq-ans{padding-left:15px}.admission-procedure h4{font-size:20px;line-height:30px}.admission-procedure .table-responsive{margin-top:25px}.foreign-admission h4{font-size:25px;line-height:35px}.anti-rag h3,.anti-rag h4,.placement-corporate h3,.placement-corporate h4,.placement-tracker h3,.placement-tracker h4,.placement-vismis h3,.placement-vismis h4,.placementcell h3,.placementcell h4{font-size:22px;line-height:30px}.academic-cncl,.examrules,.holyday-lst,.pre-placement.my-5{margin-bottom:20px!important}.placementcell table tr td img,.placementcell table tr th img{max-width:inherit!important}.events .evt-bg{padding:0 15px}.vdo-zm a:before{height:110px}.inner-banner h2{font-size:24px;line-height:34px;margin-top:15px}.scholr{min-height:inherit}.scholr .text-white{padding:20px 0!important}.retresult .py-4{padding:0!important}}@media only screen and (max-width:640px){.slick-slider .prev-arrow{left:-15px}.slick-slider .next-arrow{right:-15px}}@media only screen and (max-width:575px){.bottom-nav{padding-right:5px}.socials ul li a{width:27px;height:27px;line-height:26px;font-size:12px}.slider-badges img{width:68px}.slider-info{width:255px}.btn-comon{width:127px;font-size:13px;padding:8px 5px}.img-left{height:385px}.deb-intro{left:5%;bottom:5%}.deb-intro h2,.pb-item a{font-size:20px}.deb-intro p{font-size:15px}.pb-item a span{font-size:14px}.feature-bx::before{width:25%;height:1px;top:5px;right:0;margin:0 auto}.galview{width:97%}.scl-intro{text-align:center}.faq .content h2{font-size:25px}.contact-info{padding:10px 25px}.nvblue{padding:25px 0}.footer .container .row>div:nth-child(2){width:46%;margin-left:15px}.footer .container .row>div:nth-child(4){width:46%;margin-left:10px}.footer .container .row>div:nth-child(5){order:4;margin-left:15px;width:30%;float:left}.footer .container .row>div:nth-child(6){order:5;margin-left:15px;width:30%;float:left}.footer .container .row>div:nth-child(3){order:3;width:30%;float:left}.footer .container .row>div:nth-child(2){order:1}.footer .container .row>div:nth-child(4){order:2}.footer .container .row>div:first-child{order:6}.pb-item{width:180px;height:180px;padding:50px 20px 20px}}@media only screen and (max-width:540px){.school_study_item_bottom,.school_study_item_top{width:100%;float:none}.school_study_item_top{margin:2% 0}.school_study_item_bottom{margin:0}.school_study_item_con h3{font-size:20px}}@media only screen and (max-width:520px){.carousel-indicators,.slider-badges{display:none}.accred-ttl h4{font-size:18px}.dr-publication{flex-wrap:wrap}.pb-2col{width:100%;flex-direction:column!important}.pb-item{margin:10px auto}.news-item{width:346px;height:335px;padding:80px 40px}.news-infos h4{font-size:15px}.news-infos p{font-size:14px}.news-dt{top:-20px}table.tbl-admin tbody tr:nth-child(odd){background:#e4e2e2}table.tbl-admin tbody tr:nth-child(odd):hover{background:#37b5ed}.tbl-admin td,.tbl-admin th{display:block}table.tbl-appl tr td.phn-rs{width:auto}.mail-success div i.fa-check-circle{font-size:60px}}@media only screen and (max-width:480px){.rcg p{font-size:14px;line-height:16px}#main-slider ul.slick-dots{bottom:0}.school_study_item_con h3,.sfb h1{font-size:20px}.school_study_items ul li{width:100%}.mob-adms,.mob-none{display:none}.adms{margin-top:0}.mht{min-height:auto;font-size:18px}.banner-info h1,.content h2,.evt-ttl h2,.vis_mis h2{font-size:22px}.media-body h5{font-size:16px}.rvw-dt{font-size:13px}.activity-date,.rvw .media-body p,.rvw-rate{font-size:14px}.rvw-img{width:50px;height:50px}.std-texts p{font-size:13.5px;line-height:18px}.std-texts div h5{font-size:15px}.faculty-info,.faculty-member .img-faculty{width:100%;padding:10px 0;text-align:center;border:0}.faculty-info p{text-align:center}.faculty-member a{flex-wrap:wrap}.activity-info div div .btn-sm{padding:.1rem .2rem;font-size:13px}.login-block{padding:50px 15px}.point{font-size:17px;line-height:27px;padding-top:5px;margin-bottom:10px;text-align:left}.admission-procedure h4{font-size:18px;line-height:26px}.foreign-admission h4{font-size:22px;line-height:32px}.placement-vismis.my-5 .col-md-3{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.placement-tracker h3,.placement-tracker h4{font-size:20px;line-height:30px}.faculty-member{display:block;padding:0 10px}}@media only screen and (max-width:430px){.bx{padding:25px 7px}.bx p{font-size:16px}.q-links ul.apply li{width:50%;float:left}.footer .container .row>div:nth-child(2),.footer .container .row>div:nth-child(4){width:100%}.footer .container .row>div:nth-child(5){order:1;margin-left:15px;width:100%;float:none}.footer .container .row>div:nth-child(6){order:5;margin-left:15px;width:100%;float:none}.footer .container .row>div:nth-child(3){order:3;width:100%;float:none}}@media only screen and (max-width:400px){.news-item{width:270px;height:270px;padding:42px 35px}.news-dt b{font-size:15px}.news-dt{width:60px;height:60px;margin-left:auto;margin-right:auto;top:-28px;left:0;right:0}.news-infos p{font-size:13px}}@media only screen and (max-width:359px){.bx{padding:20px 3px}.bx p{font-size:15px}.cap-name h3{font-size:18px}ul.d2 li{width:100%;float:none}}@media only screen and (max-width:340px){.rcg{width:100%}}
