@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,700&display=swap&subset=latin-ext');

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

::-webkit-scrollbar {
    width: 0;
}

.clearfix:after {
    clear: both;
}

div, p, a, li, td {
    -webkit-text-size-adjust: none;
}

img {
    vertical-align: middle;
}

html {
    height: 100%;
}

body {
    position: relative;
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #7f7f7f;
    /* background-color: #0f3854; */
}

table th, table td {
    text-align: left;
    font-size: 16px;
    padding-right: 10px;
}

.map {
    height: 400px;
    border: 1px solid white;
    margin: 16px 0px 8px;
}

.mainContainer {
    min-height: 100%;
    position: relative;
}

.mainSlider {
    position: relative;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #175179;
}

header {
    position: absolute;
    width: 100%;
    padding: 60px 150px;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo {
    display: block;
    float: left;
    position: relative;
    z-index: 2;
}

nav {
    text-align: right;
}

nav > ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

nav > ul ul {
    display: none;
    position: absolute;
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 40px;
    min-width: 100%;
    text-align: left;
    background-color: #85e4ff;
    top:100%;
    left:0;

}
nav > ul > li > ul ul {
    left: 100%;
    top: 0;
    border-left: 1px solid #030b11;
}
nav > ul > li > ul li > a {
    display: block;
    padding: 0 14px;
    white-space: nowrap;
    text-decoration: none;
    color: #030b11;
    border-bottom: 1px solid #030b11;
}
nav > ul > li > ul li:hover > a {
    background-color: #0094bf;
    color:white;
}

nav > ul > li {
    display: inline-block;
    padding-right: 30px;
    line-height: 76px;
    position: relative;
}
nav > ul > li li {
    position:relative;
}

nav > ul > li > a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    display: block;
    letter-spacing: 1px;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
nav > ul > li > a + i {
    color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 30px;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

nav > ul > li > a.active, nav > ul > li:hover > a, nav > ul > li > a.active + i, nav > ul > li > a:hover + i  {
    color: rgba(255, 255, 255, 1);
}
@media (min-width: 1024px) {
    nav > ul li:hover > ul {
        display: block;
    }
}
.nav-toggle {
    display: none;
    padding: 16px 20px;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 2;
}

.nav-toggle .icon-bar {
    width: 20px;
    height: 2px;
    transition: all 0.2s;
    border-radius: 3px;
    display: block;
    background-color: white;
}

.nav-toggle .icon-bar + .icon-bar {
    margin-top: 6px;
}

.nav-toggle .top-bar {
    transform: rotate(45deg);
    transform-origin: -5% 50%;
    -ms-transform: rotate(45deg);
    -ms-transform-origin: -5% 50%;
    -webkit-transform: rotate(45deg);
    -webkit-transform-origin: -5% 50%;
}

.nav-toggle .middle-bar {
    opacity: 0;
}

.nav-toggle .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: -5% 60%;
    -ms-transform: rotate(-45deg);
    -ms-transform-origin: -5% 60%;
    -webkit-transform: rotate(-45deg);
    -webkit-transform-origin: -5% 60%;
}

.nav-toggle.collapsed .top-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
}

.nav-toggle.collapsed .middle-bar {
    opacity: 1;
}

.nav-toggle.collapsed .bottom-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
}

.search, .close {
    display: inline-block;
    color: white;
    vertical-align: middle;
    pointer-events: none;
    cursor: pointer;
    position: relative;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.search:hover {
    color: #40c7ee;
}

.search:before {
    content: "\f2eb";
    font-family: LineAwesome;
    font-size: 25px;
    pointer-events: auto;
    display: block;
    padding-left: 30px;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    border-left: 1px solid #40c7ee;
}

.close {
    position: absolute;
    top: 80px;
    right: 150px;
}

.close:before {
    content: "\f342";
    font-family: LineAwesome;
    font-size: 30px;
    display: block;
    pointer-events: auto;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

.searchBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
    background-color: #40c7ee;
    overflow: hidden;
    -webkit-transition: height .2s ease-in-out;
    transition: height .2s ease-in-out;
}

.searchBox.active {
    height: 100vh;
}

.searchBox form {
    position: relative;
    width: 40%;
    border-bottom: 1px solid white;
}

.searchBox input {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 30px;
    height: 90px;
    line-height: 60px;
    color: white;
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    letter-spacing: 1px;
    -webkit-appearance: none;
    vertical-align: middle;
}

.searchBox input::-ms-expand {
    background-color: transparent;
    border: 0;
}

.searchBox input:focus {
    outline: 0;
}

.searchBox input::-webkit-input-placeholder {
    color: white;
    opacity: 1;
}

.searchBox input::-moz-placeholder {
    color: white;
    opacity: 1;
}

.searchBox input:-ms-input-placeholder {
    color: white;
    opacity: 1;
}

.searchBox input::-ms-input-placeholder {
    color: white;
    opacity: 1;
}

.searchBox input::placeholder {
    color: white;
    opacity: 1;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid white;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 24px;
}

.btn:focus {
    outline: 0;
}


.wellcome {
    color: white;
    max-width: 650px;
    position: absolute;
    top: calc(50% - 200px);
    left: 220px;
}

.wellcome > h3 {
    font-size: 40px;
    letter-spacing: 2px;
}

.wellcome ul {
    list-style-type: none;
    padding-left: 0;
}

.wellcome > ul > li {
    font-size: 18px;
    margin-top: 15px;
    position: relative;
    padding-left: 70px;
}

.wellcome > ul > li:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 45px;
    background-color: #40c7ee;
    top: 13px;
    left: 0;
}

.panel {
    position: absolute;
    width: 328px;
    bottom: 125px;
    right: 150px;
    letter-spacing: 1px;
}

.panel ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.panel-heading {
    line-height: 50px;
    font-weight: bold;
    font-size: 18px;
    color: #40c7ee;
}

.panel-heading:after {
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    background-color: #40c7ee;
    position: absolute;
    top: 25px;
    right: 112px;
}

.newsPrev, .newsNext {
    position: absolute;
    display: block;
    width: 40px;
    text-align: center;
    height: 40px;
    opacity: 1;
    color: #40c7ee;
    border: 1px solid #40c7ee;
    border-radius: 50%;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.newsPrev:hover, .newsNext:hover {
    opacity: .7;
}

.newsPrev {
    top: 4px;
    right: 0;
}

.newsNext {
    top: 4px;
    right: 50px;
}

.newsPrev:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    top: 16px;
    left: 12px;
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #40c7ee;
}

.newsNext:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    top: 16px;
    left: 12px;
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #40c7ee;
}

.news-item {
    padding: 10px 10px 10px 0px;
    margin: 0px;
}

.news-item > div {
    position: relative;
}

.newsDate {
    position: relative;
    width: 60px;
    height: 75px;
    text-align: center;
    float: left;
    line-height: 1;
}

.newsDate h1, .newsDate h2, .newsDate h3 {
    color: white;
    margin: 0;
}

.newsDate h1 {
    font-size: 36px;
}

.newsDate h2 {
    font-size: 10px;
    margin-top: 3px;
}

.newsDate h3 {
    font-size: 18px;
    margin-top: 4px;
}

.newsDescription {
    position: absolute;
    width: calc(100% - 90px);
    height: 100%;
    right: 0;
    color: white;
}

.newsDescription a {
    text-decoration: none;
    color: #40c7ee;
}

.newsDescription a:hover {
    text-decoration: underline;
}

.newsDescription > div {
    height: 100%;
    display: table;
    width: 100%;
    margin: 0;
}

.newsDescription > div > div {
    display: table-cell;
    vertical-align: middle;
}

.bgImage {
    position: relative;
    height: 45vh;
    z-index: -1;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
}

.bgImage > .headerText {
    color: white;
    position: absolute;
    margin: 0;
    font-size: 36px;
    letter-spacing: 2px;
    bottom: 70px;
    left: 150px;
    font-weight: 200;
}

.bgImage > .headerText:before {
    content: "";
    display: block;
    height: 1px;
    width: 130px;
    background-color: white;
    position: absolute;
    left: -150px;
    top: 23px;
}

.mainContent {
    padding: 80px 150px;
    line-height: 2.2;
    width: 100%;
    max-width: 1530px;
    position: relative;
}

.mainContent > h3:first-child {
    margin-top: 0;
}

.mainContent h3 {
    color: #1a3a84;
    letter-spacing: 1px;
    padding-left: 60px;
    font-weight: 400;
    font-size: 30px;
    position: relative;
}

.mainContent h3:before {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background-color: #1a3a84;
    position: absolute;
    left: 0;
    top: 50%;
}

.mainContent h4 {
    color: #1a3a84;
    letter-spacing: 1px;
    padding-left: 40px;
    font-weight: 400;
    font-size: 20px;
    position: relative;
    margin-top: 0;
    line-height: 1.4;
    margin-bottom: 10px;
}

.mainContent h4 a {
    text-decoration: none;
    color:inherit;
}

.mainContent h4:before {
    content: "";
    display: block;
    height: 1px;
    width: 26px;
    background-color: #1a3a84;
    position: absolute;
    left: 0;
    top: 13px;
}

.mainContent p {
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 0;
    margin-top: 0;
}

.mainContent ul {
    list-style-type: none;
    position: relative;
    padding: 15px 30px 15px 10px;
}

.mainContent ul:after {
    content: "";
    display: block;
    background-color: #f1f0f0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    box-shadow: 20px 19px #f9f9f9;
}

.mainContent ul li {
    position: relative;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 300;
    text-align: justify;
}

.mainContent ul li:before {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 15px;
    background-color: #1a3a84;
    top: 17px;
    left: 15px;
}

.mainContent .blockItem {
    position: relative;
    padding: 15px;
    margin-bottom: 30px;
    /*background-color: #f1f0f0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;*/
}

.mainContent .blockItem:hover {
    /*background-color: #e8e8e8;*/
}

.mainContent .blockItem:after {
    /*content: "";
    display: block;
    background-color: #f9f9f9;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 20px;
    left: 20px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
}

.mainContent .blockItem:hover:after {
    /*top: 30px;
    left: 30px;*/
}

.mainContent .blockItem h4 ~ p {
    padding-left: 40px;
}


.readMore {
    background-color: #1a3a84;
    color: white;
    text-decoration: none;
    font-size: 12px;
    padding: 2px 9px;
    margin-left: 8px;
    letter-spacing: 1px;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.readMore:hover {
    background-color: #0089b1;
    color: white;
}

footer {
    color: white;
    position: absolute;
    left: 150px;
    bottom: 20px;
}

.mainContent + footer {
    color: #7f7f7f;
}

.card-columns {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    orphans: 1;
    widows: 1;
}

.card-columns .card {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin-bottom: 50px;
    position: relative;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: black;
    background-clip: border-box;
}

.card-columns .card:after {
    content: "";
    display: block;
    background-color: #e4e4e4;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 20px;
    left: 20px;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card-columns .card:hover:after {
    top: 30px;
    left: 30px;
}

.card-columns .card img {
    width: 100%;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.card-columns .card img:hover {
    opacity: .8;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0a293d;
    z-index: 10;
}

.loader img {
    animation-duration: 0.55s;
    transition-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-name: fadeIn;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.m-scene .scene_element {
    animation-duration: 0.55s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
}

.m-scene .scene_element--fadein {
    animation-name: fadeIn;
}

.m-scene .scene_element--fadeinup {
    animation-name: fadeInUp;
}

.m-scene .scene_element--fadeinright {
    animation-name: fadeInRight;
}

.m-scene.is-exiting .scene_element {
    animation-direction: alternate-reverse;
}

.m-scene:after {
    content: "";
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 250px;
    z-index: 10;
    top: 0;
    left: 0;
}
.is-loading .m-scene:after {
    display: block;
}



@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

}

@-webkit-keyframes fadeInUp {
    0% {
        height: 100vh;
    }

    100% {
        height: 40vh;
    }
}

@keyframes fadeInUp {
    0% {
        height: 100vh;
    }

    100% {
        height: 40vh;
    }
}


@media (max-width: 1500px) {

    nav > ul > li > a + i {
        top: 21px;
    }

    header {
        width: 100%;
        padding: 40px 100px;
    }

    nav > ul > li > a {
        font-size: 14px;
    }

    footer {
        left: 100px;
    }

    .wellcome {
        left: 180px;
    }

    .panel {
        bottom: 100px;
        right: 100px;
    }

    .close {
        top: 60px;
        right: 100px;
    }

    .bgImage > .headerText {
        font-size: 30px;
        left: 100px;
    }

    .bgImage > .headerText:before {
        width: 75px;
        left: -100px;
        top: 20px;
    }
}

@media (max-width: 1350px) {
    .logo {
        width: 150px;
    }

    .logo > img {
        max-width: 100%;
    }

    nav > ul > li {
        line-height: 56px;
        padding-right: 25px;
    }

    .search:before {
        padding-left: 25px;
    }
}

@media (max-width: 1200px) {
    header {
        padding: 40px 50px;
    }

    nav > ul > li {
        padding-right: 20px;
    }

    nav > ul > li > a {
        font-size: 12px;
    }

    .search:before {
        padding-left: 20px;
    }

    footer {
        left: 50px;
    }

    .wellcome {
        left: 100px;
        max-width: 400px;
        top: calc(50% - 150px);
    }

    .wellcome > h3 {
        font-size: 30px;
    }

    .wellcome > ul > li {
        font-size: 14px;
        padding-left: 40px;
    }

    .wellcome > ul > li:before {
        width: 27px;
        top: 9px;
    }

    .close {
        top: 50px;
        right: 50px;
    }

    .panel {
        bottom: 50px;
        right: 50px;
    }

    .mainContent {
        line-height: 2;
        padding: 80px 100px;
    }

    .mainContent p, .mainContent ul li {
        font-size: 15px;
    }
}

@media (max-width: 1023px) {
    .nav-toggle {
        display: inline-block;
    }
    header.fixed{
        position:fixed;
    }
    nav > ul {
        display: none;
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow-y:auto;
        left: 0;
        top: 0;
        background-color: #000000;
        text-align: center;
        z-index: 1;
        padding:130px 0 100px;
        -webkit-overflow-scrolling: touch;
    }
    nav > ul > li {
        padding: 0px;
        display: block;
        margin: 0 50px;
    }
    nav > ul > li > a {
        font-size: 16px;
        display:inline-block;
    }
    nav > ul > li > a + i, nav > ul > li > ul li > a + i {
        background-color: white;
        color: black;
        margin-left: 30px;
        padding: 6px;
        position: absolute;
        right: -37px;
        top: 15px;
        z-index:2;
    }
    nav > ul > li > a + i {
    }
    nav > ul > li > ul li > a + i {
        top: 8px;
    }
    nav > ul ul {
        position: relative;
        text-align: center;
        background-color: transparent;
    }
    nav > ul > li > ul ul{
        left:auto;
    }
    nav > ul > li > ul li > a {
        color: white;
        display: inline-block;
    }
    nav > ul > li > ul li:hover > a{
        background-color:transparent;
    }
    .wellcome {
        left: calc(50% - 200px);
        top: 150px;
    }
    .panel {
        bottom: 100px;
        right: calc(50% - 164px);
    }
    .card-columns {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
    table th, table td {
        font-size: 14px;
        vertical-align:top;
    }
    table th {
        white-space:nowrap;
    }
    .searchBox form {
        width: 80%;
    }
    .bgImage {
        -webkit-background-attachment: unset !important;
        -moz-background-attachment: unset !important;
        -o-background-attachment: unset !important;
        background-attachment: unset !important;
    }

}
@media (max-width: 767px) {
    header {
        padding: 15px 22px;
    }
    .wellcome {
        left: calc(50% - 150px);
        top: calc(50vh - 170px);
        max-width: 300px;
    }

    .wellcome > h3 {
        font-size: 22px;
    }
    .panel {
        bottom: auto;
        right: auto;
        width: 100%;
        position: relative;
        margin: auto;
        background-color: #082134;
        padding: 20px 20px 60px;
    }
    .panel-heading:after {
        top: 45px;
        right: 130px;
    }
    .newsNext {
        top: 26px;
        right: 70px;
    }
    .newsPrev {
        top: 26px;
        right: 20px;
    }
    footer {
        left: 0;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    .mainContent {
        line-height: 1.6;
        padding: 50px 30px 80px;
    }
    .mainContent p, .mainContent ul li {
        font-size: 14px;
    }
    .mainContent ul {
        padding: 15px 20px 15px 10px;
    }
    .mainContent ul:after {
        box-shadow: 10px 10px #f9f9f9;
    }
    .mainContent h3 {
        font-size: 20px;
    }
    .mainContent h4 {
        font-size: 16px;
        padding-left: 16px;
    }
    .mainContent h4:before {
        width: 13px;
        left: -8px;
        top: 10px;
    }
    .mainContent .blockItem h4 ~ p {
        padding-left: 16px;
    }
    .mainContent .blockItem {
        margin-bottom: 30px;
        padding: 15px 20px 20px 20px;
    }
    .mainContent .blockItem:after {
        top: 10px;
        left: 10px;
    }
    .mainContent .blockItem:hover:after {
        top: 15px;
        left: 15px;
    }
    .bgImage > .headerText {
        font-size: 18px;
        left: 55px;
        bottom: 40px;
    }
    .bgImage > .headerText:before {
        width: 42px;
        left: -55px;
        top: 13px;
    }

    .card-columns {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .card-columns .card {
        margin-bottom: 30px;
    }
    .card-columns .card:after {
        top: 10px;
        left: 10px;
    }
    .searchBox input {
        font-size: 16px;
        height:65px;
    }
    .btn {
        font-size: 16px;
        top: 12px;
    }
    .close {
        top: 22px;
        right: 20px;
    }

}

