@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');

:root {
    --main--color: #0D2175;
}

body {
    font-family: "Anek Latin", sans-serif !important;
}
.btn-1 {
    border: var(--main--color) solid 2px;
    background: var(--main--color);
    color: white;
    border-radius: 40px;
    transition: all 0.4s ease-in-out;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    font-weight: bold;
}
.btn-1:hover {
    background: transparent;
    color: var(--main--color);
}
.uppercase {
    text-transform: uppercase;
}
.main_nav_bar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translate(-50%, 0);
}
.main_image {
    background: linear-gradient(10deg, rgba(24, 62, 194, 0.9) 10%, rgba(234, 238, 254, 1.5) 50%), url(https://s3-alpha-sig.figma.com/img/d046/44bb/963b963…?Expires=1717977600&Key-Pair-Id=APKAQ4GOSFWCVNEHN3O4&Signature=BKcHbG0djCSJ6psuHgvpIzm-eE7Q7xsJSxgFJKLNEqyjdyyIjNphIbelxMm40pRB0wRHIIK7xtOSR~Li-~6KQhJj9KfVpYuQj611zf9bOKmTBEHtEcwavzJcmdPyzpWgiKak6R0aDepT770YSPC24jfRNWV0Fdknm-kpA9T~FDFnnEaGvrJHZbPysUbuE28~HNi1e0zWHe3un2xystRMeDYTDrys3JQ3QO9J2o7-DYp97o2L8QlHgcPk5sqohBFNqn53BmlyqpMDlPvJgCQn7P6gPXDeyc2-glf7LWRBCwFDWX7D~ZvxzKf5M2eZhOiwnjrSRnrpbjZYMM81TCDXrA__);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}
.canvas_btn{
    border: none;
    background: transparent;
    color: var(--main--color);
}

@media(max-width: 756px){
    .main_logo{
        width: 150px;
    }
}
@media(min-width: 756px){
    .main_logo{
        width: 200px;
    }
}
@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 3.5rem !important;
    }
}

.service {
    border-radius: 20px;
    box-shadow: 1px 2px 13px -4px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 2px 13px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 2px 13px -4px rgba(0,0,0,0.75);
    height: 100%;
    position: relative;
}

.service a{
    position: absolute;
    bottom: 20px;
    color: var(--main--color);
    font-weight: bold;
}

.method {
    color: white;
    border-radius: 20px;
    box-shadow: 1px 2px 13px -4px rgba(255,255,255,0.75);
    -webkit-box-shadow: 1px 2px 13px -4px rgba(255,255,255,0.75);
    -moz-box-shadow: 1px 2px 13px -4px rgba(255,255,255,0.75);
    height: 100%;
}

.work_card {
    background: grey;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

footer {
    background: rgb(137,178,181);
    background: linear-gradient(0deg, rgba(137,178,181,1) 0%, rgba(255,255,255,1) 100%);
}