@import url('https://fonts.cdnfonts.com/css/euclid-circular-b');
@import url('https://fonts.cdnfonts.com/css/graphik');

body{

    font-family: 'Graphik', sans-serif;

}
p{
    font-size: 14px;
    line-height: 22px;
    color: #262626;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Euclid Circular B', sans-serif ;
}
.large-f{
    font-size: 18px;
    line-height: 32px;
}

:root {
    --primary: rgb(244, 134, 28);
    --secondary: rgb(255, 255, 255);
    --light: #c0c0c0;
    --dark: #e79c56;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 90px;
    z-index: 99;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background-color: #e67a1a;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 80px;
    }
}

.animate-icons{
    width: 300px;
    height: 300px;
}
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 7rem;
    padding-bottom: 6rem;
}

.pt-8 {
    padding-top: 7rem;

}
.dropdown-item{
    background-color: #ffffff;
    font-weight: 500;
    font-size: 14px;
}
.dropdown-item:hover{
    background-color:var(--secondary);
    color: #262626;
    /*font-weight: 500;*/
}

.text-primary{
    color: #f4861c !important;
}
.pointer:hover{
    cursor: pointer;
}
.bg-transparent{
    background-color: rgba(23, 23, 23, 0.8) !important;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}
.btn-outline-primary {
    color: #f4861c  !important;
    border-color: #f4861c  !important;
}
.btn-outline-primary:hover {
    background-color: rgb(151,212,243)!important;
    /*border-color: rgb(151,212,243)!important;*/
}

.btn-primary{
    background-color: #f4861c !important;
    border-color: #f4861c !important;
}
.btn-secondary{
    background-color: rgb(151,212,243) !important;
    border-color: rgb(151,212,243) !important;
}
.bg-primary {
    background-color: #f4861c !important;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/

nav{
    font-family: 'Euclid Circular B', sans-serif !important;

}
.fixed-top {
    transition: .5s;
}


.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Euclid Circular B', sans-serif ;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    /*padding: 25px 15px;*/
    color: #c0c0c0;
    /*font-weight: 500;*/
    outline: none;
    font-weight: 500;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #f4861c;
}
.navbar-toggler{
    background-color: rgba(244, 134, 28, 0.7) !important;
    border-radius: 3px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: rgb(23,23,23);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*cover-banner*/
.main-header{
    font-size: 72px !important;
    font-weight: 500 !important;
    line-height: 86px !important;
    color: transparent; !important;
    font-family: 'Euclid Circular B', sans-serif ;

}
.stoke-white{
    -webkit-text-stroke: 2px #c0c0c0 !important;
}
.list-group-item{
    border: none !important;
}

.main-header-sub-list{
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 26px !important;
    color: #000000 !important;
    font-family: 'Euclid Circular B', sans-serif ;
}
.min-vh-3{
    min-height: 20vh !important;
}
.min-vh-4{
    min-height: 30vh !important;
}
.min-vh-2{
    min-height: 10vh !important;
}
.min-vh-50{
    min-height: 50vh !important;
}

@media (max-width: 768px) {
    .main-header{
        font-size: 48px !important;
        font-weight: 500 !important;
        line-height: 56px !important;
        /*color: #000000 !important;*/
        font-family: 'Euclid Circular B', sans-serif ;
    }
}



/*mobile*/
@media (max-width: 425px) {
    .min-vh-4{
        min-height: 40vh !important;
    }
    .min-vh-3{
        min-height: 30vh !important;
    }
    .min-vh-2{
        min-height: 25vh !important;
    }
    .main-header-sub-list{
        font-size: 18px !important;
        font-weight: 500 !important;
        /*line-height: 26px !important;*/


    }
    .main-header{
        font-size: 32px !important;
        /*line-height: 40px !important;*/

    }
    .cover-social-links{
        font-size: 18px;
    }
    .cover-services-list:hover::after{
        width: 0% !important;
    }
}

/*monitor*/
@media (min-width: 1537px) {
    p{
        font-size: 18px;
        line-height: 30px;
    }
    .large-f{
        font-size: 24px;
        line-height: 37px;
    }
    .sub-header {
        font-size: 44px !important;
        font-weight: 500;
        line-height: 53px !important;
    }
    .min-vh-4{
        min-height: 45vh !important;
    }
    .min-vh-3{
        min-height: 35vh !important;
    }
    .min-vh-2{
        min-height: 25vh !important;
    }
    .main-header-sub-list{
        font-size: 18px !important;
        font-weight: 500 !important;
        /*line-height: 26px !important;*/


    }
    .main-header{
        font-size: 72px !important;
        /*background-color: #0d6efd;*/
        line-height: 86px !important;

    }

}


.sm-icons{
    color: black;
    font-size: 26px;
}
.bottom-15{
    bottom: 15%;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}