/* sticky */

.sticky_head.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    background: white;
    z-index: 999;
    animation: mymove 0.4s linear;
    -webkit-box-shadow: 2px 0 70px hsla(0, 0%, 13%, 0.15);
    box-shadow: 2px 0 70px hsla(0, 0%, 13%, 0.15);
}

@keyframes mymove {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 90px;
    height: 120px;
    cursor: pointer;
    z-index: 999999999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: mymove 0.4s linear;
}

.back-to-top .bi-arrow-up::before {
    content: "\f148";
    font-weight: 700 !important;
}

.show-back-to-top {
    display: flex;
}

.circle {
    width: 100%;
    height: 100%;
    position: relative;
}

.rotating {
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    animation: spin 15s linear;
    animation-play-state: paused;
    transition: transform 1s ease-out;
}

.back-to-top:hover .rotating {
    animation-play-state: running;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #01489e;
    z-index: 1;
    transition: color 0.3s;
}

text {
    fill: #004ea0;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: fill 0.3s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section-padding {
    padding-top: 65px;
    padding-bottom: 65px;
}

.main_heading h1 {
    text-align: center;
    font-weight: 700;
    background: linear-gradient(180deg, #27b9f2, #00008e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 40px;
}


/* Navbar styles */
.navbar_header .navbar {
    z-index: 9999;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar_header .navbar-brand {
    font-weight: bold;
}

.navbar_header img.logo {
    width: 130px;
    height: 70px;
}

.navbar_header .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0px;
    padding-left: 30px;
    margin-left: 5px;
}

.navbar_header .navbar-nav .nav-link {
    color: black;
    font-weight: 600;
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
}

/* Hover and Active effect: color + slide up */
.navbar_header .navbar-nav .nav-link:hover,
.navbar_header .navbar-nav .nav-link.active {
    color: rgb(0 23 134);
    transform: translateY(-4px);
    opacity: 0.9;
}

/* Animated underline (starts from center) */
.navbar_header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: rgb(0 23 134);
    transition: width 0.4s ease, left 0.4s ease;
}

/* Hover and Active underline */
.navbar_header .navbar-nav .nav-link:hover::after,
.navbar_header .navbar-nav .nav-link.active::after {
    width: 100%;
    left: 16%;
}

.banner {
    position: relative;
    background-image: url(../image/banner-desktop.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 760px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-now-btn {
    bottom: 162px;
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    /* background: linear-gradient(to right, #0067b7, #0252a8); */
    border-radius: 50px;
    padding: 5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-now-btn-inner {
    background: linear-gradient(to right, #df9e68, #ffffff);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    gap: 10px;
}

.book-now-btn span {
    color: #361f11;
    font-weight: 800;
    font-size: 18px;
}

.book-now-btn .arrows {
    color: #361e14;
    font-size: 18px;
    margin-top: -1px;
}

.book-now-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px #382116;
    /* animation: bounce 2s infinite; */

}

/* @keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
} */

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.play-icon {
    font-size: 2.5rem;
    color: #ffffff30;
    cursor: pointer;
    display: none;
    transition: 0.5s;
}

section.banner:hover .play-icon {
    display: block;
}


.banner_modal .modal-dialog {
    position: absolute;
    bottom: 0px;
    right: 20px;
}

.banner_modal .modal-content {
    line-height: 0px;
}

.banner_modal .modal-body {
    padding: 5px;
}

.banner_modal .modal-body video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* about us */

section.about_us_section {
    background: #d5e3ef3d;
}

.about_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
    gap: 25px;

}

.about_img img {
    width: 100%;
    border-radius: 5px;
}

.about_content p {
    text-align: center;
    font-size: 17px;
    line-height: 30px;
    color: #000000c4;
}


/* vision Section */
.about-section {
    background: #addcf117;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #7dd5f414; */
    color: white;
    text-align: center;
    padding: 50px 50px 30px;
}

/* .about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/_abt.jpg);
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
} */

/* .about-left {
    flex: 1;
    clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%);
    position: relative;
}

.about-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(178deg, #0054a6b8, #13b6ee96);
} */

.about-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0px;
    margin-right: 75px;
}

.about-content {
    max-width: 600px;
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-heading {
    font-weight: 700;
    background: linear-gradient(180deg, #27b9f2, #00008e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 40px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    width: 65%;
    margin: auto;
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        height: auto;
    }

}


/* vision */

.vision-icon {
    font-size: 40px;
    color: #01489e;
}

.vision_section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7dd5f414;
    color: white;
    text-align: center;
    padding: 35px 25px 45px;
}

section.vision_section p {
    width: 65%;
    margin: auto;
    margin-top: 15px;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* projects */

.upcoming_projects_head {
    position: relative;
}

/* .upcoming_projects_head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #27b9f2, #00008e);
} */

.upcoming_projects_head h1 {
    font-weight: 700;
    background: linear-gradient(180deg, #27b9f2, #00008e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 35px;
    padding-left: 20px;
    text-align: center;
}

section.upcoming_projects {
    padding: 30px 50px 50px;
    /* background: #afcbe926; */
}

.projects_image {
    margin-top: 37px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    position: relative;
}

.projects_image img {
    width: 100%;
    transition: 0.5s;
    border-radius: 5px;
    height: 100%;
    /* filter: brightness(1.4); */
}

.projects_image img:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: scale(0.9);
}


/* contact us */

section.contact-modern {
    background: linear-gradient(269deg, #27b9f2bf, #00008ec4);
    background-blend-mode: overlay;
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
    /* z-index: 999999; */
}

.contact-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../image/about_us.webp);
    opacity: 0.1;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .contact-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
} */

/* Contact form style */
.form-control-dark {
    margin-top: 5px;
    background-color: #ffffff5c;
    border: none;
    color: white !important;
    border-radius: 0;
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 3px;
    font-size: 16px;
}

.form-control-dark::placeholder {
    color: #ffffff !important;
}

.form-control-dark:focus {
    border-color: #002292;
    box-shadow: none;
    background-color: #ffffff5c;
}

.btn-light {
    background: white;
    color: #000055;
    font-weight: 500;
    transition: 0.3s ease;
    margin-top: 44px;
    border: none;
}

.btn-light i {
    transition: 0.5s;
}

.btn-light:hover i {
    margin-left: 5px;
}

.btn-light:hover {
    color: white;
    background: linear-gradient(180deg, #27b9f2, #00008e);
}

/* Contact info box positioning */
.contact-info-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 835px;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-top: 3px solid #00008d;
}

.contact-info-box .bg-dark {
    border-radius: 0;
    box-shadow: none;
}

.contact_us_details h2 {
    color: #ffffff;
}

.contact_us_details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: justify;
}

.form-label {
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 600;
}

.contact_us_details {
    margin-top: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
    background: #00b6f00d;
}

.contact_map iframe {
    width: 458px;
    height: 490px;
}

.contact_info .text-secondary {
    color: #01489e !important;
    font-weight: 600;
    margin-bottom: 3px !important;
}

.contact_info p {
    font-size: 15px;
    color: #333;
    /* text-align: justify; */
    font-weight: 500;
}

.contact-heading {
    color: white;
}

.contact-heading {
    color: white;
    font-size: 38px;
    font-weight: 700;
}

.contact_info_flex i {
    color: #01489e;
    font-size: 17px;
    background: white;
    padding: 3px 7px;
    border-radius: 3px;
    transition: 0.5s;
    cursor: pointer;
}

.contact_info_flex i:hover {
    background: #01489e;
    color: white;
}

.contact_info_flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* footer */

footer.footer {
    border-top: 3px solid #00459e;
    padding: 75px 0px 10px;
}

.footer_section {
    text-align: center;
}

.footer_section img {
    width: 200px;
    height: 105px;
}

.social_media_icon {
    margin-top: 12px;
}

.social_media_icon i {
    margin-right: 15px;
    font-size: 20px;
}

.social_media_icon .bi-facebook::before {
    content: "\f344";
    color: #1877F2;
}

.social_media_icon .bi-instagram::before {
    content: "\f437";
    color: #E1306C;
}

.social_media_icon .bi-twitter::before {
    content: "\f5ef";
    color: #1DA1F2;
}

.social_media_icon .bi-youtube::before {
    content: "\f62b";
    color: #FF0000;
}

.footer_menus {
    margin-top: 19px;
}

.footer_menus ul li {
    list-style-type: none;
    display: inline;
    margin-right: 20px;
    font-weight: 600;
    transition: 0.5s;
    cursor: pointer;
}

.footer_menus ul li:hover {
    color: #003697;
}

.footer_copyright {
    margin-top: 100px;
}

.footer_copyright p {
    font-size: 15px;
    border-top: 1px solid #0000005c;
    padding-top: 20px;
}

.footer_menus ul li a {
    color: #00000c;
    text-decoration: none;
    transition: 0.5s;
}

.footer_copyright p a {
    color: #003697;
    font-weight: 500;
}

.footer_menus ul li a:hover {
    color: #003697;
}


/* mobile responsive sidebar */
.responsive_sidebar {
    display: none;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    right: 0;
    background: linear-gradient(330deg, #27b9f2, #00008e);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.responsive_sidebar .bi-x::before {
    content: "\f62a";
    color: white;
    font-size: 30px;
    float: right;
    background: #22a6e7;
    margin-right: 10px;
}

.sidebar_a {
    margin-top: 50px;
}

.sidebar_a a i {
    margin-right: 10px;
}

.sidebar_a a:hover {
    background: #00000033;
}

.responsive_sidebar .bi-chevron-down::before {
    content: "\f282";
    float: right;
    margin-top: 6px;
}

.responsive_sidebar .bi-chevron-up::before {
    content: "\f286";
    float: right;
    margin-top: 6px;
}

.sidenav a {
    padding: 13px 8px 13px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #ffffffe0;
    display: block;
    transition: 0.3s;
    font-weight: 500;
}

.sidenav a:hover {
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.responsive_top_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.responsive_top_flex span {
    color: #22035c;
}

.submenus_res {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding-left: 20px;
}

.submenus_res ul {
    list-style: none;
    padding: 0;
}

.submenus_res ul li a {
    color: #ffffffe0;
    font-size: 19px;
    border-bottom: none;
    padding: 15px 15px 0px;
}

.responsive_sidebar .dropdown-btn {
    cursor: pointer;
}

.submenus_res ul li a:hover {
    color: #f1f1f1;
}

.submenus_res.open {
    max-height: 500px;
}

img.logo_img {
    width: 100px;
}

/* our teams */

section.crew-section {
    background: #ffffff0d;
    padding: 30px 50px 50px;
    position: relative;
}

.dummy-img {
    position: absolute;
    right: 0;
    top: 0;
}

.dummy-img img {
    width: 230px;
}

.teams-section {
    margin-top: 25px;
}

/* .crew-frame:hover img {
    border: 5px solid #0059ab;
} */

/* .crew-frame img {
   border-radius: 15px 75px;
    transition: 0.5s;
    border: 5px solid white;
}

.crew-frame {
    background: linear-gradient(180deg, #27b9f2, #00008ebd);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
    transition: 0.5s;
}

.crew-frame:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: -5px;
} */

/* .marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content img {
    height: 270px;
    flex-shrink: 0;
    user-select: none;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px))
    }
} */


.crew-title {
    width: 65%;
    margin: auto;
    margin-top: 15px;
    text-align: center;
    margin-bottom: -18px;
    font-size: 17px;
    line-height: 30px;
}

.crew-frame {
    text-align: center;
    border: 1px solid #0000002b;
    height: 225px;
    padding-top: 20px;
    position: relative;
}

.crew-img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    /* border: 4px solid #c2794c; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.crew-frame:hover .crew-img {
    transform: scale(1.05);
}

.crew-name {
    margin-top: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    background: linear-gradient(92deg, #27b9f2, #00008ea8);
    position: absolute;
    bottom: -15px;
    width: 100%;
    padding: 5px;
}

.teams-section .col-xl-2 {
    width: 14%;
}

@media screen and (max-width: 600px) {

    .book-now-btn {
        left: 25%;
        bottom: -74px;
    }

    .book-now-btn-inner {
        background: linear-gradient(92deg, #27b9f2, #00008ea8);
    }

    .book-now-btn span {
        color: #ffffff;
    }

    .book-now-btn .arrows {
        color: #ffffff;
    }


    .teams-section .col-xl-2 {
        width: 100%;
    }

    .crew-title {
        width: 100%;
        text-align: justify;
        padding-right: 10px;
        padding-left: 10px;
    }

    .footer_copyright {
        margin-top: 50px;
    }

    .footer_menus ul {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer_menus ul li {
        display: block;
        margin-right: 0px
    }

    .vision-icon {
        font-size: 35px;
    }

    .about-heading {
        font-size: 32px;
    }

    .crew-frame {
        width: 255px;
        margin-right: auto;
        margin-left: auto;
    }

    .dummy-img {
        display: none;
    }

    section.contact-modern .p-4 {
        padding: 0px !important;
    }

    .contact_info {
        padding: 10px;
    }

    section.crew-section {
        padding: 35px 0px 50px;
    }

    .about-section {
        padding: 25px 0px 30px;
        margin-top: 70px;
    }



    .about-text {
        width: 100%;
        text-align: justify;
        padding-right: 10px;
        padding-left: 10px;
    }

    .back-to-top {
        width: 70px;
        bottom: 25px;
    }

    .navbar_header {
        display: none;
    }

    .responsive_sidebar {
        display: block;
    }

    .banner {
        background-image: url(../image/banner-mobile.webp);
        background-position: right;
    }

    .about-left {
        display: none;
    }

    /* .about-section::before {
        display: none;
    } */

    .about-right {
        margin-right: 0px;
    }

    .about-content {
        padding: 10px 20px;
    }

    .vision_section {
        padding: 25px 0px;
    }

    section.vision_section p {
        width: 100%;
        text-align: justify;
        padding-right: 10px;
        padding-left: 10px;
    }

    section.upcoming_projects {
        padding: 25px 5px;
    }

    .projects_image {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    /* .contact-modern::before {
        display: none;
    } */

    .contact-info-box {
        position: unset;
        width: 100%;
    }

    .contact-info-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact_map iframe {
        width: 100%;
    }

    .banner_modal .modal-dialog {
        top: 100px;
        right: 0px;
    }

    .play-icon {
        display: block;
    }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
    .book-now-btn {
        bottom: 60px;
    }

    .book-now-btn-inner {
        padding: 12px 27px;
    }

    .navbar_header .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 20px;
        margin-left: 0px;
    }

    .navbar_header .container {
        max-width: 720px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 991px) {
    .book-now-btn {
        bottom: 60px;
    }

    .book-now-btn-inner {
        padding: 12px 27px;
    }

    .book-now-btn span {
        font-size: 17px;
    }

    .dummy-img {
        display: none;
    }

    .crew-title {
        width: 100%;
    }

    .teams-section {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }

    .crew-section .col-12 {
        flex: 0 0 auto;
        width: 50%;
    }

    .about-text {
        width: 90%;
    }

    section.contact-modern .p-4 {
        padding: 0px !important;
    }

    .navbar_header .navbar>.container {
        justify-content: center;
    }

    .navbar_header button.navbar-toggler {
        display: none;
    }

    .navbar_header .collapse:not(.show) {
        display: block;
    }

    .navbar_header .navbar-nav {
        flex-direction: row;
        justify-content: center;
        border-top: 3px solid #003497;
        padding: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .banner_modal .modal-dialog {
        top: 70px;
        left: 50px;
        right: 50px;
    }

    .play-icon {
        display: block;
    }

    .banner {
        height: 385px;
    }

    .about-left {
        display: none;
    }

    .about-right {
        padding: 45px;
    }

    section.vision_section p {
        width: 100%;
    }

    .projects_image {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info-box {
        position: unset;
        width: 100%;
    }


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .book-now-btn {
        bottom: 90px;
    }

    .banner {
        height: 505px;
    }

    .crew-title {
        width: 100%;
    }

    .crew-section .col-lg-6 {
        width: 25%;
    }

    .about-content {
        padding: 30px;
    }

    .about-right {
        margin-right: 35px;
    }

    .contact-info-box {
        position: unset;
        width: 100%;
    }

    section.contact-modern .col-lg-5 {
        width: 65%;
    }

    section.contact-modern .row {
        justify-content: center;
    }

    .banner_modal .modal-dialog {
        top: 76px;
        right: 265px;
    }

    section.vision_section p {
        width: 100%;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    section.crew-section .col-xl-2 {
        width: 20%;
    }

    section.contact-modern .p-4 {
        padding: 15px !important;
    }

    .contact_map iframe {
        width: 382px;
        height: 380px;
    }

    .contact-info-grid {
        gap: 20px;
    }

    .contact-info-box {
        width: 700px;
    }

    .contact_info_flex {
        gap: 8px;
    }

    .contact_info p {
        font-size: 14px;
    }


}

@media only screen and (min-width: 1350px) and (max-width: 1499px) {
    .teams-section .col-xl-2 {
        width: 14% !important;
        padding: 5px;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1499px) {
    .contact-info-box {
        width: 800px;
    }

    .teams-section .col-xl-2 {
        width: 14%;
    }
}