html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-family: Montserrat;
  overflow-x: hidden;
}
.row {
    display: flex;
    flex-direction: row;
}
.column {
    display: flex;
    flex-direction: column;
}
.beta {
    border: 3px solid red;
}
nav {
    margin: 0;
    padding: 0;
}
.navigation-section {
    display: flex;
    justify-content: space-evenly;
    border-bottom: 1px solid gray;
    width: 100%;
    height: 10vh;
}
.nav-sec-1, .nav-sec-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    color: rgb(2, 2, 103);
}
.nav-sec-1 {
    justify-content: left;
    font-size: 1.0rem
}
.nav-sec-2 {
    justify-content: right;
    font-size: 0.6rem
}
main {
    margin: 0;
    padding: 0%;
    width: 100%;
    border-bottom: 4px solid #E6E6E8;
}
.out-fo-order {
    user-select: none;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
}
.ms-banner {
    background: linear-gradient(
    145deg,
    #355fa1 0%,
    rgba(5, 26, 148, 0) 60%
    ), url('../static/images/bacground_image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #e9edf0;
    width: 100%;
    box-sizing: border-box;
    padding: 6% 5%;
    margin: 0%;
}
.banner-text {
    color: white;
    width: 100%;
    font-size: 1.5rem;
    margin-top: -2%;
    text-shadow:
    0 1px 2px rgba(0,0,0,0.7),
    0 4px 12px rgba(0,0,0,0.5);
}
.ms-b-button {
    text-decoration: none;
    margin-top: 1%;
    background-color: #284879;
    border: none;
    color: white;
    padding: 1.2% 0.5%;
    border-radius: 4px;
    font-weight: bold;
    width: 30%;
    font-size: 1.5rem;
}
.ms-b-button:hover {
    background-color: #152136;
    cursor: pointer;    
}
.ms-b-button:active {
    background-color: #9ea0a5;
    color: rgb(0, 0, 0);
}
.strip {
    border: none;
    height: 2px;  
    width: 30%;
    margin: 2rem auto;
    background-color: rgba(128, 128, 128, 0.37);
}
.strip_full {
    border: none;
    height: 2px;  
    width: 100%;
    margin: 1rem auto;
    background-color: rgba(128, 128, 128, 0.37);
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eqauls {
    display: flex;
    justify-content: center;
    align-items: center;
}
.options-list {
    display: flex;
    border: none;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 2%;
    padding: 0% 5%;
}
.contact-list, .services-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}
.option-card {
    display: flex;
    width: 20%;
    justify-content: center;
    align-items: center;
    cursor: pointer;    
    background-color: rgba(128, 128, 128, 0.253);
    transition: all ease-in-out 0.3s;
}
.option-card:hover {
    background-color: rgba(128, 128, 128, 0.4);
   
}
.option-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}
.tmi {
    font-size: 3.5rem;
    margin-bottom: 0.1%;
    font-weight: 600;
}
.o-c-img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    margin-bottom: -0.3rem;
}
.o-c-h {
    margin: 0;
    background-color: #284879;
    color: white;
    padding: 1rem;
    width: 92%;
    text-align: center;
}
.header h2 {
    color: #284879;
    margin-top: 15%;
    font-size: 2.0rem;
    text-wrap: nowrap;
}
.service-item {
    font-size: 1.6rem;
    margin-bottom: 2%;
    color: #284879;
    font-weight: 500;
    text-wrap: nowrap;
}
.no-circle {
     list-style: none;
}
.space-clipper {
    display: flex;
    justify-content: left;
    width: fit-content;
    text-align: left;
}
.contact-button {
    margin-top: 1%;
    background-color: #284879;
    border: none;
    color: white;
    padding: 4%;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
    font-size: 1.5rem;
}
.contact-button:hover {
    background-color: #152136;
    cursor: pointer;    
}
.contact-button:active {
    background-color: #9ea0a5;
    color: rgb(0, 0, 0);
}
.btn-placer {
    display: flex;
    margin-top: 10%;
    justify-content: center;
}
footer {
    background-color: #F0F1F3;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: top;
    min-height: 20vh;
    color:#284879;
}
footer h3 {
    font-weight: 400;
    margin-top: 2%;
}
.space-clipper ul, .services-list ul {
    padding-left: 0;
}
.services-list ul {
    padding-left: 7%;
}
/*.dropdown {
  position: relative;
}

.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.3s ease;
}

.dropdown:hover .drop-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 10;
}

.drop-menu p {
  display: block;
  padding: 20px 25px;
  text-decoration: none;
  color: #222;
}

.drop-btn {
    background-color: #2849799c;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}*/


@media (max-width: 480px) {
    .banner-text {
        font-size: 1.1rem;
    }
    .contacts {
        display: none;
    }
    .ms-b-button {
        width: 70%;
        padding: 4%;
    }
    .company-name {
        font-size: 1.5rem;
        text-wrap: wrap;
        padding: 3%;
    }
    .options-list {
        display: flex;
        border: none;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 2%;
        padding: 0% 5%;
    }
    .nav-sec-1 {
        width: 100%;
        justify-content: center;
    }
    .options-list {
        display: block;
    }
    .strip {
        border: none;
        height: 2px;  
        width: 18%;
        margin: 2rem auto;
        margin-bottom: 5%;
        background-color: rgba(128, 128, 128, 0.37);
    }
    .option-card {
        display: flex;
        width: 100%;
        margin-top: 15%;
    }
    .service-item {
        font-size: 1.2rem;
        margin-bottom: 4%;
    }
    .footer {
        font-size: 0.8rem;
    }
}


@media (min-width: 481px) and (max-width: 767px) {
    .company-name {
        font-size: 2rem;
        margin-left: 30px;
        text-wrap: nowrap;
    }
    .contacts {
        display: none;
    }
    nav {
        padding: 2%
    }
}


@media (min-width: 768px) and (max-width: 1023px) {

}


@media (min-width: 1024px) and (max-width: 1279px) {

}


@media (min-width: 1280px) {

}