@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('simulations.css');
@import url('about.css');
@import url('footer.css');
@import url('testimonials.css');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: white;
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fe6b0e;
    border-radius: 12px;
    padding: 10px 14px;
    font: 600;
    box-shadow:  0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: white;
}

.btn-default a {
    text-decoration: none;
    color: white;
}

.btn-default2 {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fe6b0e;
    border-radius: 12px;
    padding: 10px 14px;
    font: 600;
    box-shadow:  0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: black;
}

.btn-default:hover, #phone_button:hover {
    background-color: #bb2200;
}

.social_media_buttons {
    display: flex;
    gap: 18px;
}

.social_media_buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fe6b0e;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social_media_buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1) ;
    background-color: #bb2200;
}