footer {
    background-color: #eeeeee;
}
footer .footer-top {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #eeeeee;
}
footer .footer-top .footer-logo img {
    filter: grayscale(1) opacity(0.7);
}

footer .footer-top .footer-url {
    color: rgba(161, 161, 161, 1);
    font-size: 0.9em;
    letter-spacing: 0px;
    font-weight: 600;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    margin-top: 13px;
    display: inline-block;
}
.footer-top a.footer-url:last-child {
    margin-left: 10px;
    border-left: 0px solid #9e9e9e;
    padding-left: 10px;
    font-size: 0.9em;
}
.footer-middle {
    padding-top: 5px;
    border-top: 1px solid #c1c1c1;
    background: #dedede;
}
.footer-middle p {
    color: rgba(52, 52, 52, 1);
    margin-top: 10px;
}
footer .footer-middle ul {
    display: block;
}
footer .footer-middle ul li {
    display: inline-block !important;
    list-style-type: none;
    margin-left: 3px !important;
    border-left: 1px solid #A1A1A1FF;
}
footer .footer-middle ul li:first-child {
    border-left: none !important;
}
footer .footer-middle ul li a {
    color: rgba(161, 161, 161, 1);
    font-size: 1.5em;
    margin-left: 5px;
}
footer .footer-bottom {
    background: #1c4883;
    color: WHITE;
    padding: 10px;
    font-size: 12px;
}
.sol{
    text-align: left;
}
.beyaz{
    color: #FFF !important;
}
/* Loader Styles start here */
.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #FFF;
    --outer-line-color: #a8dadc;
    --middle-line-color: #457b9d;
    --inner-line-color: #1d3557;
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;
    z-index:9999;
}

.loader {
    display:block;
    position: relative;
    top:50%;
    left:50%;

    width:150px;
    height:150px;
    margin:-75px 0 0 -75px;
    z-index:1001;
}


@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
    }
    100% {
    }
}

.loader-wrapper .loader-section {
    position:fixed;
    top:0;
    background:var(--curtain-color);
    width:51%;
    height:100%;
    z-index:1000;
}

.loader-wrapper .loader-section.section-left {
    left:0
}
.loader-wrapper .loader-section.section-right {
    right:0;
}

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
}
.loaded .loader-wrapper .loader-section.section-right {
}
.loaded .loader {
}
.loaded .loader-wrapper {
    visibility: hidden;
    transform:translateY(-100%);
    transition: all .3s 1s ease-out;
}



.spinner{
    position:absolute;
    left:50%;
    top:60%;
    transform: translate(-60%, -60%);
    display:flex;
}
.spinner div{
    display: flex;
    margin-right:26px;
}
.spinner div::before, .spinner div::after{
    display:block;
    content:"";
    background-color:#1c4883;
    border-radius:15px;
    height:15px;
    width:15px;

    transform: translateX(-20px);
}
.spinner div.first::before{
    animation: switchdot 1s linear infinite ;
}
.spinner div.first::after{
    transform: translateX(20px);
}
.spinner div.second::before{
    animation: switchdot 1s linear infinite -.5s ;
}
.spinner div.second::after{
    transform: translateX(20px);
}
.first{
    animation: turn1 1s ease-in-out infinite;
}
.second{
    transform: rotate(180deg);
    animation: turn2 1s ease-in-out infinite;
}
@keyframes turn1 {
    0%{ transform: rotate(0) }
    50%{ transform: rotate(180deg) }
    100%{ transform: rotate(180deg) }
}
@keyframes turn2 {
    0%{ transform: rotate(0) }
    50%{ transform: rotate(0) }
    100%{ transform: rotate(-180deg) }
}
@keyframes switchdot {
    0%{ background-color: #1c4883 }
    52%{ background-color: #1c4883 }
    53%{ background-color: transparent }
    100%{ background-color: transparent }
}
.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.panel-default>.panel-heading a {
    display: block;
    padding: 10px 15px;
}

.panel-default>.panel-heading a:after {
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
}

.panel-default>.panel-heading a[aria-expanded="true"] {
    background-color: #eee;
}

.panel-default>.panel-heading a[aria-expanded="true"]:after {
    content: "\2212";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
    content: "\002b";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.accordion-option {
    width: 100%;
    float: left;
    clear: both;
    margin: 15px 0;
}

.accordion-option .title {
    font-size: 20px;
    font-weight: bold;
    float: left;
    padding: 0;
    margin: 0;
}

.accordion-option .toggle-accordion {
    float: right;
    font-size: 16px;
    color: #6a6c6f;
}

.title {
    font-size: 19px;
    font-weight: bold;
    float: left;
    padding: 0;
    margin: 0;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 0 !important
}
div.carrier-card .header-1 p {
    padding: 0;
    font-size: 1em;
    padding-right: 10px;
    text-align: right !important;
    margin: 0;
    width: 100%;
    opacity: 1;
    color: #0b0b0b;
}

div.carrier-card {

    border: 1px solid #dddddd;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 10px transparent;
    position: relative;
    margin-top: 10px;
    padding: 10px;
}
div.carrier-card .header-1 p {
    padding: 0;
    font-size: 1em;
    padding-right: 10px;
    text-align: right !important;
    margin: 0;
    width: 100%;
    opacity: 1;
    color: #0b0b0b;
}
div.carrier-card .header-1 p span {
    position: absolute;
    left: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #0b0b0b;
}
div.carrier-card .container-1 {
    margin-top: 30px;
    padding: 20px;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #0b0b0b;
}
.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #dee2e6;
}
.table th, .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6 !important;
}

div.with-numbers-dortbet .fa {
    font-size: 50px;
    margin-bottom: 10px;
}

div.dortbey-corporate img {
    height: 100%;
    width: 100%;
    border-radius: 5px !important;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%) !important;
}

section.mhmmd-bg {
    background-color: #1c4883;
    padding: 20px;
}

section.mhmmd-bg .call-to-action h3 {
    font-size: 1.2em;
    color: #fff;
}

section.mhmmd-bg .call-to-action small {
    font-size: 1em;
    color: #fff;
}

.dortyol-btn {
    background-color: #fff;
    color: #000;
}

.dortyol-btn.clr1 {
    background-color: #1c4883;
    color: #fff;
}

.dortyol-btn:hover {
    background-color: #fff;
    color: #000;
}

div#biz-sizi-arayalim-modal {
    padding: 0;
}

div#biz-sizi-arayalim-modal .modal-header {
    border-bottom: 0px !important;
}

div#biz-sizi-arayalim-modal .modal-body {
    background-color: rgba(221, 221, 221, 0.14);
    padding: 2.5em;
}

div#biz-sizi-arayalim-modal .modal-header .modal-title {
    font-size: 1.8em;
    font-weight: 800;
}

div#biz-sizi-arayalim-modal .modal-body form input {
    margin-bottom: 5px;
    padding: 10px;
    background-color: #dddddd7a;
    height: 50px;
    border-color: #e5dede !important;
}

div#biz-sizi-arayalim-modal .modal-body form textarea {
    margin-bottom: 15px;
    background-color: #dddddd7a;
    border-color: #dddddd7a;
}

div#biz-sizi-arayalim-modal .modal-body form .form-group-check {
    display: flex;
    align-items: baseline;
}

div#biz-sizi-arayalim-modal .modal-body form .form-group-check input {
    height: 12px;
    margin-right: 5px;
}

div#biz-sizi-arayalim-modal .modal-body form .form-group-check label {
    color: #000;
}

#ea-home-slider .carousel-control .fa-angle-left, #ea-home-slider .carousel-control .fa-angle-right {
    background-color: #ffffff59;
    color: #00000080;
    border-radius: 50%;
    padding: 3px;
    margin-left: -25px;
}

div.project-img {
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;
}

div.campaign-img {
    height: 300px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 10;


}

div.project-details {
    background-color: #fff;
    padding: 15px;
}

div.project-details-gray {
    background-color: #f0efec;
    padding: 30px;
    border-radius: 0 0 15px 15px ;

}

div.campaign-details {
    background-color: #fff;
    padding: 15px;
    border-radius: 0 0 15px 15px;
}

div.project-details .project-title h4 {
    font-size: 18px;
    font-weight: 500;
}


.main-title{
    color: #2d2d2d;
    text-align: center;
    text-transform: capitalize;
    padding: 0.7em 0;
}

.container .title{
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
}

.content {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.content .content-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
    opacity: 1;
}

.content-image{
    width: 100%;
    height: 300px;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details h3{
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.content-details p{
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-bottom{
    top: 80%;
}

.fadeIn-top{
    top: 20%;
}

.fadeIn-left{
    left: 20%;
}

.fadeIn-right{
    left: 80%;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.carousel-control {
    width: 8%;
    width: 0px;
}
.carousel-control.left,
.carousel-control.right {
    margin-right: 22px;
    margin-left: 32px;
    background-image: none;
    opacity: 1;
}
.carousel-control > a > span {
    color: white;
    font-size: 29px !important;
}

.carousel-col {
    position: relative;
    min-height: 1px;
    padding: 5px;
    float: left;
}

.active > div { display:none; }
.active > div:first-child { display:block; }

/*xs*/

@media (max-width: 480px) {

    .carousel {
        height: 35vh !important;
    }
}

@media (max-width: 767px) {
    .carousel-inner .active.left { left: -50%; }
    .carousel-inner .active.right { left: 50%; }
    .carousel-inner .next        { left:  50%; }
    .carousel-inner .prev		     { left: -50%; }
    .carousel-col                { width: 50%; }
    .active > div:first-child + div { display:block; }
    .loader {
        display:block;
        position: relative;
        top:50%;
        left:55% !important;

        width:150px;
        height:150px;
        margin:-75px 0 0 -75px;
        z-index:1001;
    }
    .carousel-control.left, .carousel-control.right {
        margin-right: 22px;
        margin-left: 6px;
        background-image: none;
        opacity: 1;
        /* left: auto; */
    }
    .carousel-control.right {
        left: auto;
        right: 9px;
        border-radius: 6px 0 0 6px;
    }
    .orta{
        text-align: center;
    }
    div.project-img {
        height: 200px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        z-index: 10;
    }

    div.campaign-img {
        height: 180px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        z-index: 10;


    }

    div.dortbey-slider {
        display: none !important;
    }

    div.dortbey-slider-mobile {
        display: block !important;
    }

    .carousel-inner>.item {
        background-position: unset !important;
        background-size: 100% auto !important;
    }

    .carousel {
        height: 45vh;
    }
}

/*sm*/
@media (min-width: 768px) and (max-width: 991px) {
    .carousel-inner .active.left { left: -50%; }
    .carousel-inner .active.right { left: 50%; }
    .carousel-inner .next        { left:  50%; }
    .carousel-inner .prev		     { left: -50%; }
    .carousel-col                { width: 50%; }
    .active > div:first-child + div { display:block; }

    div.dortbey-slider {
        display: none !important;
    }

    div.dortbey-slider-mobile {
        display: block !important;
    }

    .carousel {
        height: 70vh;
        margin-top: 70px;
    }
}

/*md*/
@media (min-width: 992px) and (max-width: 1199px) {
    .carousel-inner .active.left { left: -33%; }
    .carousel-inner .active.right { left: 33%; }
    .carousel-inner .next        { left:  33%; }
    .carousel-inner .prev		     { left: -33%; }
    .carousel-col                { width: 33%; }
    .active > div:first-child + div { display:block; }
    .active > div:first-child + div + div { display:block; }
    .nav>li>a {
        position: relative;
        display: block;
        padding: 24px 12px !important;
        color: #fff;
        font-weight: 500;
        transition: all .3s ease-in-out
    }
    div.dortbey-slider {
        display: none !important;
    }

    div.dortbey-slider-mobile {
        display: block !important;
    }
}

/*lg*/
@media (min-width: 1200px) {
    .carousel-inner .active.left { left: -25%; }
    .carousel-inner .active.right{ left:  25%; }
    .carousel-inner .next        { left:  25%; }
    .carousel-inner .prev		     { left: -25%; }
    .carousel-col                { width: 25%; }
    .active > div:first-child + div { display:block; }
    .active > div:first-child + div + div { display:block; }
    .active > div:first-child + div + div + div { display:block; }
    .sliderr{
        margin-top: 79px !important;
    }
    .sag{ text-align: right}
}

.block {
    width: 100%;
    height: 100%;
}

.block img {
    width: 60%;
    height: 100%;
    filter: grayscale(1);
}

.main-icon-menu a {
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: right;
    padding-top: 2px;
    padding-left: 1px;
    background-color: #ffffff;
    color: #1c4883 !important;
}

a.search-toggler:hover {
    background-color: #1c4883 !important;
    color: white !important;
}


section.search-section {
    display: flex;
    background: #1c4883;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-70px);
}

section.search-section.open {
    z-index: 9999;
    opacity: 1;
    transform: perspective(100px) translateZ(0px);
    margin-top: 78px;
}


section.search-section div.container {
}

section.search-section div.container {
}

section.search-section div.container .form-group {
    position: relative;
    display: block;

    overflow: hidden;
}

section.search-section div.container .form-group input {
    position: relative;
    display: flex;
    z-index: 12;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: start;
    padding-right: 80px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 10px;
    border-radius: 20px;

}

section.search-section .project-list ul {
    list-style: none;
    display: flex;
    padding-inline-start: 0;
}

section.search-section .project-list ul li {
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #fff;
}

section.search-section .project-list ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.dortbeybtn {
    background-color: white;
    padding: 10px;
    border-radius: 25px;
    font-weight: 700;
    float: right;
}

iframe {
    /* height: 100%; */
}
.hakkimizda{
    font-size: 14px;
}
.stretch-card>.card {
    width: 100%;
    min-width: 100%
}

body {
    background-color: #f9f9fa
}

.flex {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

@media (max-width:991.98px) {
    .padding {
        padding: 1.5rem
    }
}

@media (max-width:767.98px) {
    .padding {
        padding: 1rem
    }
}

.padding {
    padding: 3rem
}


.owl-carousel .item{
    margin: 3px;
}
.owl-carousel .item img{
    display: block;
    width: 100%;
    height: auto;
}

.owl-carousel .item {
    margin: 3px;
}

.owl-carousel{
    margin-bottom:15px;
}

div.dortbey-slider {
    display: block;
}

div.dortbey-slider-mobile {
    display: none;
}

@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.swiper-wrapper {
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}

.swiper-container {
    background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    position: relative;
    max-width: 100%;
    height: 100%;
    max-height: 580px !important;
    border-radius: 10px;
}

.slider-image-wrapper {
    height: 350px;
    width: 100%;
    overflow: hidden;
}

.slider-item {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    opacity: 0;
    background: linear-gradient(270deg, #f7f9ff 0%, #f2f6ff 100%);
    cursor: -webkit-grab;
    cursor: grab;
}
.slider-item-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
}


.swiper-slide-active .slider-item-content > * {
    transform: translateY(0px);
    opacity: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.2s;
}

.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translatex(-50%);
    z-index: 1;
    width: auto !important;
}

.swiper-pagination-bullet {
    border-radius: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    line-height: 30px;
    font-size: 12px;
    opacity: 1;
    background: rgba(83, 134, 190, 0.3);
    display: inline-block;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.swiper-pagination-bullet-active {
    background: #1c4883;
    width: 20px;
    border-radius: 10px;
}

.slider-buttons {
    position: absolute;
    display: flex;
    top: 100%;
    justify-content: flex-end;
    width: 100%;
    padding-top: 8px;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
    position: relative;
    margin-left: 4px;
}
.swiper-button-next:before,
.swiper-button-prev:before {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 1px;
    width: 0;
    left: 0;
    bottom: -1px;
    transition: 0.2s;
}
.swiper-button-next:hover:before,
.swiper-button-prev:hover:before {
    width: 100%;
}

.socials {
    position: fixed;
    top: 12px;
    right: 16px;
    display: flex;
    align-items: center;
}
.socials .social-link {
    display: inline-block;
    margin-left: 8px;
    color: #fff;
}

@media screen and (max-width: 520px) {
    .swiper-button-next:hover:before,
    .swiper-button-prev:hover:before {
        display: none;
    }
}
.contact-box .icon span {
    font-size: 0.4em;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}
.icon-yazi {
    font-weight: 600 !important;
    font-size: 0.7em !important;
}
.contact-box .icon {
    text-align: center;
    font-size: 2em;
    padding: 7px;
}
.contact-box .contain {
    position: relative;
    z-index: 3;
}
.contact-box {
    background: rgba(239, 239, 239, 0.56);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    min-height: 100px;
    position: relative;
    padding-bottom: 10px;
}
.wa__btn_popup .wa__btn_popup_icon {
    display: block;
    width: 56px;
    height: 56px;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 6px 8px 2px rgb(0 0 0 / 14%);
    -webkit-box-shadow: 0 6px 8px 2px rgb(0 0 0 / 14%);
    -moz-box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .14);
}

.wa__btn_popup {
    position: fixed;
    right: 25px;
    bottom: 55px;
    cursor: pointer;
    z-index: 100;
}
.wa__btn_popup .wa__btn_popup_txt {
    position: absolute;
    width: 156px;
    left: 100%;
    background-color: #f5f7f9;
    font-size: 12px;
    color: #43474e;
    top: 10px;
    padding: 7px 0 7px 12px;
    margin-left: 7px;
    letter-spacing: -.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
    border: 1px solid #dddddd;
}
.wa__btn_popup .wa__btn_popup_icon:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/whatsapp_logo.svg) center center no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: .4s ease all;
    -webkit-transition: .4s ease all;
    -moz-transition: .4s ease all;
}
.form-toggler {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: fixed;
    z-index: 140;
    color: WHITE;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1em;
    right: 0;
    top: 50%;
    padding: 10px;
    background: #00355c;
    background: linear-gradient(90deg, rgb(28 72 131) 0%, rgb(28 72 131) 24%, rgb(28 72 131) 100%);
    transition: all 0.5s ease-in-out;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    letter-spacing: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-right: 0 !important;
}
.form-toggler:hover,
.form-toggler:active,
.form-toggler:focus {
    color: WHITE;
}

.form-toggler.opened {
    right: 400px;
    padding-right: 10px;
}

.slice-form {
    height: 100vh;
    width: 400px;
    position: fixed;
    right: -400px;
    top: 0;
    z-index: 140;
    background: WHITE;
    transition: all 0.5s ease-in-out;
    border-left: 1px solid #0000001c;
    display: flex;
    align-items: center;
}
.slice-form.opened {
    right: 0;

}
form input[type="text"], form input[type="email"], form input[type="number"], form textarea {
    display: block;
    width: 100%;
    padding: 5px;
    color: #000000;
    font-weight: 200;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #dddddd;
}
form label {
    color: #00355c;
    font-weight: 300;
    margin-top: 5px;
}