/* START PRELOADER STYLE */
.loader-bg {
    position: fixed;
    z-index: 99999;
    background: #102942;
    width: 100%;
    height: 100%;
}
.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: calc(50vh - 75px);
    left: calc(50vw - 75px);
}
.loader:before, .loader:after {
    content: '';
    border: 1em solid #C83434;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: loader 2s linear infinite;
    opacity: 0;
}
.loader:before {
    animation-delay: .5s;
}
@keyframes loader {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
/* END PRELOADER STYLE */

body {
    font-size: 1rem;
    color: #656a6f;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .t-name {
    font-family: 'Montserrat', Kosugi, sans-serif;
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    color: #102942;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.85rem;
}

.nav-link {
    /*font-family: 'Montserrat', Kosugi, sans-serif;*/
    font-weight: 500;
}

p, section>a, li, button, label, input, dt, dd, .sub-intro, .t-pos {
    font-family: 'Nunito', Kosugi, sans-serif;
}

.sub-intro {
    font-size: 1.9rem;
}

a {
    color: #C83434;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

a:hover {
    color: #102942;
}

a.btn {
    font-size: 1rem;
}

section {
    padding: 100px 0 90px;
}

section#career .col-md-6 {
    padding-top: 100px;
    padding-bottom: 90px;
}

footer {
    padding: 70px 0 30px;
}

footer.bg-dark {
    background-color: #102942!important;
}

footer h5 {
    color: #fff;
}

footer a, footer p, footer li {
    /*font-size: 0.9rem;*/
    color: #fff;
    padding-left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

footer .footer-li-link {
    margin-left: 1.5em;
}

footer .footer-li-link a:hover {
    color: #C83434;
    text-decoration: none;
    padding-left: 6px;
}

footer .footer-li-social a:hover {
    color: #C83434;
}

section.copyright {
    /*font-size: 0.8rem;*/
    background-color: #0c1b2c;
    padding-top: 20px;
    padding-bottom: 20px;
}

.bg-light-gray {
    background-color: #efefef;
}

.close {
    font-size: 1rem;
}

.contact-info-wpr {
    padding-top: 120px;
    padding-left: 40px;
    padding-bottom: 90px;
}

.footer-li-link {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
}

.footer-li-social li i {
    font-size: 24px;
}

.scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: none;
    opacity: 0.75;
}

.scroll-top i {
    display: inline-block;
    color: #FFFFFF;
}

#navWrapper {
    padding: 15px 20px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#navWrapper .navbar-brand {
    font-size: 28px;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#navWrapper.navbar-shrink .navbar-brand {
    font-size: 22px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#navWrapper.navbar-expand-lg.navbar-shrink .navbar-nav .nav-link {
    font-size: 0.8rem;
    padding-right: .8rem;
    padding-left: .8rem;
}

#navWrapper.bg-dark {
    background-color: rgba(16,41,66,0)!important;
}

.bg-dark, a.navbar-brand img {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#navWrapper.bg-dark.navbar-shrink {
    background-color: rgba(16,41,66,0.98)!important;
}

#navWrapper.navbar-shrink a.navbar-brand img {
    width: 260px;
}

.nav-icon {
    height: 18px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 100px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
        transform-origin: left center;
}

.nav-icon span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
        transform-origin: left center;
}

.nav-icon span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
        transform-origin: left center;
}

.nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    top: 0px;
    left: 0;
}

.nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    top: 17px;
    left: 0;
}

/* AOS FIX FOR RESPONSIVE */
section, footer {
    overflow-x: hidden;
    overflow-y: hidden;
}

/* NAV LINK HOVER EFFECT : SHIFT */
.navbar-dark .navbar-nav .nav-link.active {
    background-color: #C83434;
}

nav a,
nav a:after,
nav a:before {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
div.shift a {
    position:relative;
    z-index: 1;
}
div.shift a:hover {
    color: #fff;
}
div.shift a:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '.';
    color: transparent;
    border: 1px solid #C83434;
    visibility: none;
    opacity: 0;
    z-index: -1;
}
div.shift a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px 10px;
}

.btn-primary {
    background-color: transparent;
    border: 1px solid #C83434;
    color: #C83434;
    border-radius: 0;
    padding: .395rem .95rem;
}

.btn-primary:hover  {
    background-color: #C83434;
    border-color: #C83434;
    color: #fff;
}
.btn-primary:hover i {
    color: #fff;
    transition: 0.2s;
}

/*.btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(200,52,52,.5);
            box-shadow: 0 0 0 0.2rem rgba(200,52,52,.5);
    background-color: #C83434;
    border-color: #C83434;
}*/
.btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(200,52,52,.5);
            box-shadow: 0 0 0 0.2rem rgba(200,52,52,.5);
    background-color: transparent;
    border-color: #C83434;
    color: #C83434;
}

.btn-primary:not(:disabled):not(.disabled):active {
    background-color: #C83434;
    border-color: #C83434;
}

i.scroll-top  {
    color: #C83434;
    padding-top: 15px;
}

i.scroll-top:hover {
    color: #fff!important;
}

.modal i, #career i {
    color: #C83434;
}

div.modal-dialog.modal-fluid {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width:none !important;
}

div.modal-dialog.modal-fluid .modal-content {
    height: auto !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    background-color: #eef1f3 !important
}

.section-label-about, .section-label-events {
    color: #C83434;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    left: 10px;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    transform: rotate(180deg);
    height: max-content;
}

.line {
    width: 1px;
    height: 80px;
    background-color: #C83434;
    display: inline-block;
    margin-top: 20px;
}

.section-label-career {
    color: #C83434;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    right: 10px;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    transform: rotate(180deg);
    height: max-content;  
}

.t-pos {
    color: #102942;
}

.t-name {
    font-size: 1.05rem;
    color: #102942;
}


/* PARALLAX EFFECT */
.jarallax {
    height: 100vh;
    position: relative;
    z-index: 0;
}

#career.jarallax, #contact.jarallax {
    height: auto;
}

.jarallax > .jarallax-img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero.jarallax {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 41, 66, 0.9)), to(rgba(16, 41, 66, 0.5))), url('../img/hero.jpg');
    background-image: -o-linear-gradient(rgba(16, 41, 66, 0.9), rgba(16, 41, 66, 0.5)), url('../img/hero.jpg');
    background-image: linear-gradient(rgba(16, 41, 66, 0.9), rgba(16, 41, 66, 0.5)), url('../img/hero.jpg');
}

#career.jarallax {
    background-image: url('../img/contact-bg.jpg');
}

#hero.jarallax h2 {
    font-size: 4rem;
    text-align: center;
}

#contact .map .col-md {
    height: 520px;
}

/* CARD HOVER EFFECT */
#ourteam .modal-dialog,
#whychooseus .modal-dialog,
#ourservices .modal-dialog,
#offshore .modal-dialog,
#homepage .modal-dialog,
#careeroverview .modal-dialog,
#ourprojects .modal-dialog {
    top: 80px;
}

#about .card {
    padding: 15px 0 40px;
    border-radius: 0;
}

#whychooseus .card,
#ourservices .card,
#careeroverview .card {
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    /*margin-bottom: 30px;*/
    border: 0;
    border-radius: 0;
}

#about .card,
#events .card,
#whychooseus .card,
#ourservices .card,
#careeroverview .card,
#ourprojects .card,
#career .card {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#about .card:hover,
#events .card:hover,
#whychooseus .card:hover,
#ourservices .card:hover,
#careeroverview .card:hover,
#ourprojects .card:hover,
#career .card:hover {
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.card h5 {
    font-size: 22px;
    font-weight: normal;
    margin-top: 7px;
}

#whychooseus .card img,
#ourservices .card img {
    position: relative;
    margin: 5px 0 20px;
}

#ourservices .card .btn {
    margin-bottom: 20px;
}

.custom-hr {
    background-color: #C83434;
    height: 6px;
    width: 60px;
    margin: 0 auto;
    margin-bottom:110px;
}

.custom-hr-left-align {
    background-color: #C83434;
    height: 6px;
    width: 60px;
    margin-bottom:60px;
}

.profile {
    padding-bottom: 25px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.profile:hover {
    -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-li-social li i {
    color: #adb5bd;
    font-size: 24px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.profile-li-social li a i:hover {
    color: #C83434;
}

/* HERO MOUSE ICON */
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}

.icon-scroll {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  bottom: 10%;
  margin-top: -35px;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
          box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px;
}

.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(46px);
            transform: translateY(46px);
  }
}

/* PROFILE HOVER EFFECT */
.hovereffect {
    width:100%;
    float:left;
    overflow:hidden;
    position:relative;
    text-align:center;
    cursor:default;
}

.hovereffect .overlay {
    width:100%;
    height:100%;
    position:absolute;
    overflow:hidden;
    top:0;
    left:0;
    opacity:0;
    background-color:rgba(16,41,66,0.95);
    -webkit-transition:all .4s ease-in-out;
    -o-transition:all .4s ease-in-out;
    transition:all .4s ease-in-out;
}

.hovereffect img {
    display:block;
    position:relative;
    -webkit-transition:all .4s linear;
    -o-transition:all .4s linear;
    transition:all .4s linear;
}

.hovereffect p.info {
    text-decoration:none;
    display:inline-block;
    color:#fff;
    background-color:transparent;
    opacity:0;
    filter:alpha(opacity=0);
    -webkit-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
    padding:7px 14px;
}

.hovereffect:hover img {
    -ms-transform:scale(1.2);
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}

.hovereffect:hover .overlay {
    opacity:1;
    filter:alpha(opacity=100);
}

.hovereffect:hover p.info {
    opacity:1;
    filter:alpha(opacity=100);
    -ms-transform:translatey(0);
    -webkit-transform:translatey(0);
    transform:translatey(0);
}

.hovereffect:hover p.info {
    -webkit-transition-delay:.2s;
    -o-transition-delay:.2s;
       transition-delay:.2s;
}

ul.contact-info.fa-ul {
    margin-left: 1.6rem;
}

ul.contact-info li {
    padding: 0 15px 10px;
}

ul.contact-info li i {
    font-size: 1.4rem;
}

ul.contact-info li a {
    text-decoration: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

ul.contact-info li a:hover {
    color: #C83434;
    padding-left: 6px;
}

.side-hr {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 10px;
    height: 1px;
    background: #C83434;
}

.card-custom-bg {
    background-color: #C83434!important;
    border-radius: 0;
    border: 0;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

#career .accordion button {
    color: #C83434;
    padding-left: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#career .accordion button:hover {
    text-decoration: none;
    padding-left: 12px;
}

.right-col{
    background: #f8f9fa;
}

.col-md.right-col {
    padding: 20px 20px 20px 20px;
}

.accent-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.available-task {
    background-color: #f8f9fa;
}

.row.last-row {
    background-color: #102942;
}

body.modal-open nav {
    padding-right: 0 !important;
}

.nav-tabs .nav-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-tabs {
    border-bottom: 1px solid #dedede;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: #dedede #dedede #fff;
}

.available-task .nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: #dedede #dedede #f8f9fa;
}
.progress-container {
    width: 100%;
    height: 4px;
    position: fixed;
    z-index: 1040;
}
.progress-bar {
    height: 4px;
    background: #C83434;
    width: 0%;
}
#careeroverview .last-row a, .expansion .last-row a {
    color: #ff3333 !important;
}

#careeroverview .last-row a:hover, .expansion .last-row a:hover {
    color: #C83434 !important;
}

.navbar-expand-lg .navbar-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: rgba(255,255,255,.75);
}

span.lang-divider {
    position: relative;
    top: -1px;
}

.navbar-expand-lg .navbar-lang .nav-link {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    margin: 0;
}

#events hr, .modal hr {
    /*border-top: 1px solid rgba(200, 52, 52, 0.4);*/
    border-top: 1px solid #dedede;
}

#ourteam.modal hr {
    border-top: 1px solid rgba(236, 236, 236, 0.8);
}

#ourprojects h6 a {
    color: #102942;
    transition: 0.5s;
}

#ourprojects h6 a:hover {
    color: #C83434;
}

#events .card-body {
    padding: 1.8rem;
}

.expansion .btn-reverse {
    /*background-color: #C83434;*/
    border: 1px solid #C83434;
    color: #C83434;
    border-radius: 0;
    padding: .395rem .95rem;
}

.expansion .btn-reverse i {
    color: #C83434;
    transition: 0.2s;
}

.expansion .btn-reverse:hover  {
    background-color: #C83434;
    text-decoration: none;
    /*background-color: transparent;*/
    border-color: #C83434;
    color: #fff;
}
.expansion .btn-reverse:hover i {
    color:#fff;
    transition: 0.2s;
}
#ourservices h6, #accordion h5.card-title {
    font-size: 1.2rem;
}

@media only screen and (max-width: 1199px) {
    .footer-li-link {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
}

@media only screen and (max-width: 1024px) {
    #hero.jarallax h2 {
        font-size: 4rem;
    }
    .custom-hr {
        margin-bottom:80px;
    }
}

@media only screen and (max-width: 991px) {
    #ourservices h2, #ourteam h2, #whychooseus h2, #careeroverview h2, #ourprojects h2 {
        font-size: 2.3rem;
    }
    .nav-tabs .nav-item {
        width: 100%;
    }
    .nav-tabs .nav-link {
        border-bottom: 1px solid #dedede;
    }
    .nav-tabs .nav-link.active {
        border-color: #dedede #dedede #dedede;
    }
    .available-task .nav-tabs .nav-link.active {
        border-color: #dedede #dedede #dedede;
    }
    span.lang-divider {
        font-size: 0.75rem;
    }
}

@media only screen and (max-width: 818px) {
    .section-label-about,
    .section-label-events,
    .section-label-career {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    section,
    section#career .col-md-6 {
        padding: 70px 0 80px;
    }
    section#career .col-md {
        /*height: 400px;*/
    }
    .bg-img-wpr {
        display: none;
    }
    .contact-wpr {
        width: 540px !important;
        margin: 0 auto !important;
    }
    .contact-info-wpr {
        padding: 70px 15px 50px;
    }
    .footer-li-link {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
    #navWrapper {
        padding: 10px 15px;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s;
    }
    #hero.jarallax h2 {
        font-size: 3rem;
    }
    .jarallax .sub-intro {
        font-size: 1.3rem;
        line-height: 2rem;
    }
    #contact .map .col-md {
        height: 320px;
    }
    .custom-hr-left-align {
        margin: 0 auto;
        margin-bottom:60px;
    }
    .card.h-100 {
        height: auto!important;
    }
    .custom-hr {
        margin-bottom:60px;
        height: 5px;
    }
}

@media only screen and (max-width: 575px) {
    .jarallax .col-sm {
        padding-top: 20px;
        text-align: center !important;
    }
}

@media only screen and (max-width: 484px) {
    a.navbar-brand img {
        width: 280px;
    }
    #navWrapper.navbar-shrink a.navbar-brand img {
        width: 240px;
    }
}

@media only screen and (max-width: 425px) {
    #ourservices h2, #ourteam h2, #whychooseus h2, #careeroverview h2, #ourprojects h2 {
        font-size: 1.8rem;
    }
    #hero.jarallax h2 {
        font-size: 2rem;
    }
    .jarallax .sub-intro {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }
    .custom-hr {
        margin-bottom:40px;
    }
}

@media only screen and (max-width: 374px) {
    a.navbar-brand img {
        width: 220px;
    }
    #navWrapper.navbar-shrink a.navbar-brand img {
        width: 200px;
    }
}

@media only screen and (max-width: 320px) {
    #ourservices h2, #ourteam h2, #whychooseus h2, #careeroverview h2, #ourprojects h2 {
        font-size: 1.65rem;
    }
    #hero.jarallax h2 {
        font-size: 1.6rem;
    }
    #ourservices .modal-body,
    #careeroverview .modal-body {
        padding: 0;
    }
}




/* MQ FOR OURTEAM MODAL */
@media (max-width: 1199px) {
    #ourteam .container {
        max-width: 100%;
    }
}
@media (max-width: 1024px) {
    #ourteam .t-name, #ourteam .t-pos, #ourteam .info {
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    #ourteam .col-md-3, #ourteam .col-md-4 {
        padding-right: 10px;
        padding-left: 10px;
    }
    #ourteam .info {
        font-size: 0.75rem;
    }
}
@media (max-width: 575px) {
    #ourteam .col-md-3, #ourteam .col-md-4 {
        width: 33.33%;
        padding-right: 5px;
        padding-left: 5px;
    }
}
@media (max-width: 425px) {
    #ourteam .col-md-3, #ourteam .col-md-4 {
        width: 50%;
    }
}
@media (max-width: 320px) {
    #ourteam .col-md-3, #ourteam .col-md-4 {
        width: 90%;
    }
    #ourteam .t-name, #ourteam .t-pos, #ourteam .info {
        font-size: 1rem;
    }
}