/***#######CLEARING BROWSER DEFAULTS#######***/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
}

/**fixing firefox focus issues**/
a:focus {
    outline: none;
}

button:focus {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
}

/**solving rendering issues**/
img {
    -webkit-backface-visibility: hidden;
    /* IE 9 */
    -webkit-transform: translateZ(0);
    /* Chrome, Safari, Opera */
    transform: translateZ(0);
}

/**resetting form fields**/
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

.input-def {
    background-color: rgba(0, 0, 0, 0);
    border: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
input[type='submit'] {
    -webkit-appearance: none;
}

input:read-only {
    cursor: not-allowed;
}

/***#######CLEARING BROWSER DEFAULTS ENDS#######***/



/***#######BLOCKS CSS#######***/

/***======UTILITY CLASSES======***/


.row,
.fl-left {
    float: left;
}

.fl-right {
    float: right;
}

.row {
    width: 100%;
}

.height-100 {
    height: 100%;
}


/**text aligns**/
.talign-left {
    text-align: left;
}

.talign-right {
    text-align: right;
}

.talign-cent {
    text-align: center;
}

/**centering elements**/
.v-center {
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}

.h-center {
    position: relative;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}

.hv-center {
    left: 50%;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

/**disabling elements**/
.disab {
    display: none;
}

.disab-opa {
    opacity: 0;
}

.disab-opa2 {
    opacity: 0.7;
}

.disab-z {
    z-index: -1;
}

.disab-opa-adv {
    opacity: 0;
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}

.disab-out {
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
}

.disab-out-2x {
    opacity: 0;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
}

.overflow-hidden {
    overflow: hidden;
}

/**overflow hidden**/
.over-hid {
    overflow: hidden;
}

.over-y-hid {
    overflow-y: hidden;
}

.over-x-hid {
    overflow-x: hidden;
}

/**overflow wrap and no select**/
.overflow-wrap {
    border: 1px solid transparent;
}

.no-select {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/**render in GPU**/
.gpu-fix {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/**clear fix**/
.clear-all {
    clear: both;
}

.clear-l {
    clear: left;
}

.clear-r {
    clear: right;
}

/**paddings**/
.x-pad-t {
    padding-top: 5%;
}

.xx-pad-t {
    padding-top: 8%;
}

.x-pad-b {
    padding-bottom: 5%;
}

.xx-pad-b {
    padding-bottom: 8%;
}

/***======RESPONSIVE BLOCKS======***/

/**block float**/
.block-right {
    float: right;
}

.block-left {
    float: left
}

/**block padding**/
.block-pad-10 {
    padding: 0 10px;
}

.block-pad-15 {
    padding: 0 15px;
}

.block-pad-20 {
    padding: 0 20px;
}


/*block padding left*/
.block-pad-10-l {
    padding-left: 10px;
}

.block-pad-15-l {
    padding-left: 15px;
}

.block-pad-20-l {
    padding-left: 20px;
}


/*block padding-right*/
.block-pad-10-r {
    padding-right: 10px;
}

.block-pad-15-r {
    padding-right: 15px;
}

.block-pad-20-r {
    padding-right: 20px;
}

/**block sizing based on different viewports**/

/*desktops*/

.block-10 {
    min-height: 1px;
    width: 10%;
}

.block-8_3 {
    min-height: 1px;
    width: 8.33%;
}

.block-12_5 {
    min-height: 1px;
    width: 12.5%;
}

.block-16_6 {
    min-height: 1px;
    width: 16.66%;
}

.block-20 {
    min-height: 1px;
    width: 20%;
}

.block-25 {
    min-height: 1px;
    width: 25%;
}

.block-30 {
    min-height: 1px;
    width: 30%;
}

.block-33 {
    min-height: 1px;
    width: 33%;
}

.block-35 {
    min-height: 1px;
    width: 35%;
}

.block-40 {
    min-height: 1px;
    width: 40%;
}

.block-45 {
    min-height: 1px;
    width: 45%;
}

.block-50 {
    min-height: 1px;
    width: 50%;
}

.block-55 {
    min-height: 1px;
    width: 55%;
}

.block-60 {
    min-height: 1px;
    width: 60%;
}

.block-65 {
    min-height: 1px;
    width: 65%;
}

.block-70 {
    min-height: 1px;
    width: 70%;
}

.block-75 {
    min-height: 1px;
    width: 75%;
}

.block-80 {
    min-height: 1px;
    width: 80%;
}

.block-85 {
    min-height: 1px;
    width: 85%;
}

.block-90 {
    min-height: 1px;
    width: 90%;
}

.block-100 {
    min-height: 1px;
    width: 100%;
}

/**hide elements**/
.d-hide {
    display: none;
}




/*laptops*/
@media only screen and (min-width:1024px) and (max-width:1599px) {
    

    .block-8_3-l {
        min-height: 1px;
        width: 8.33%;
    }

    .block-10-l {
        min-height: 1px;
        width: 10%;
    }

    .block-12_5-l {
        min-height: 1px;
        width: 12.5%;
    }

    .block-16_6-l {
        min-height: 1px;
        width: 16.66%;
    }

    .block-20-l {
        min-height: 1px;
        width: 20%;
    }

    .block-25-l {
        min-height: 1px;
        width: 25%;
    }

    .block-30-l {
        min-height: 1px;
        width: 30%;
    }

    .block-33-l {
        min-height: 1px;
        width: 33%;
    }

    .block-35-l {
        min-height: 1px;
        width: 35%;
    }

    .block-40-l {
        min-height: 1px;
        width: 40%;
    }

    .block-45-l {
        min-height: 1px;
        width: 45%;
    }

    .block-50-l {
        min-height: 1px;
        width: 50%;
    }

    .block-55-l {
        min-height: 1px;
        width: 55%;
    }

    .block-60-l {
        min-height: 1px;
        width: 60%;
    }

    .block-65-l {
        min-height: 1px;
        width: 65%;
    }

    .block-70-l {
        min-height: 1px;
        width: 70%;
    }

    .block-75-l {
        min-height: 1px;
        width: 75%;
    }

    .block-80-l {
        min-height: 1px;
        width: 80%;
    }

    .block-85-l {
        min-height: 1px;
        width: 85%;
    }

    .block-90-l {
        min-height: 1px;
        width: 90%;
    }

    .block-100-l {
        min-height: 1px;
        width: 100%;
    }


    /**hide elements**/
    .d-hide {
        display: block;
    }

    .l-hide {
        display: none;
    }
}

/*media query for laptop blocks ends*/



/*tablets*/

@media only screen and (min-width:500px) and (max-width:1023px) {

    .block-8_3-t {
        min-height: 1px;
        width: 8.33%;
    }

    .block-10-t {
        min-height: 1px;
        width: 10%;
    }

    .block-12_5-t {
        min-height: 1px;
        width: 12.5%;
    }

    .block-16_6-t {
        min-height: 1px;
        width: 16.66%;
    }

    .block-20-t {
        min-height: 1px;
        width: 20%;
    }

    .block-25-t {
        min-height: 1px;
        width: 25%;
    }

    .block-30-t {
        min-height: 1px;
        width: 30%;
    }

    .block-33-t {
        min-height: 1px;
        width: 33%;
    }

    .block-35-t {
        min-height: 1px;
        width: 35%;
    }

    .block-40-t {
        min-height: 1px;
        width: 40%;
    }

    .block-45-t {
        min-height: 1px;
        width: 45%;
    }

    .block-50-t {
        min-height: 1px;
        width: 50%;
    }

    .block-55-t {
        min-height: 1px;
        width: 55%;
    }

    .block-60-t {
        min-height: 1px;
        width: 60%;
    }

    .block-65-t {
        min-height: 1px;
        width: 65%;
    }

    .block-70-t {
        min-height: 1px;
        width: 70%;
    }

    .block-75-t {
        min-height: 1px;
        width: 75%;
    }

    .block-80-t {
        min-height: 1px;
        width: 80%;
    }

    .block-85-t {
        min-height: 1px;
        width: 85%;
    }

    .block-90-t {
        min-height: 1px;
        width: 90%;
    }

    .block-100-t {
        min-height: 1px;
        width: 100%;
    }

    /**hide elements**/
    .d-hide {
        display: block;
    }

    .t-hide {
        display: none;
    }
}

/*media query for tablet blocks ends*/



/*mobile*/

/*mobile medium and large*/
@media only screen and (min-width:240px) and (max-width:499px) {

    .block-8_3-m {
        min-height: 1px;
        width: 8.33%;
    }

    .block-10-m {
        min-height: 1px;
        width: 10%;
    }

    .block-12_5-m {
        min-height: 1px;
        width: 12.5%;
    }

    .block-16_6-m {
        min-height: 1px;
        width: 16.66%;
    }

    .block-20-m {
        min-height: 1px;
        width: 20%;
    }

    .block-25-m {
        min-height: 1px;
        width: 25%;
    }

    .block-30-m {
        min-height: 1px;
        width: 30%;
    }

    .block-33-m {
        min-height: 1px;
        width: 33%;
    }

    .block-35-m {
        min-height: 1px;
        width: 35%;
    }

    .block-40-m {
        min-height: 1px;
        width: 40%;
    }

    .block-50-m {
        min-height: 1px;
        width: 50%;
    }

    .block-55-m {
        min-height: 1px;
        width: 55%;
    }

    .block-60-m {
        min-height: 1px;
        width: 60%;
    }

    .block-65-m {
        min-height: 1px;
        width: 65%;
    }

    .block-70-m {
        min-height: 1px;
        width: 70%;
    }

    .block-75-m {
        min-height: 1px;
        width: 75%;
    }

    .block-80-m {
        min-height: 1px;
        width: 80%;
    }

    .block-85-m {
        min-height: 1px;
        width: 85%;
    }

    .block-90-m {
        min-height: 1px;
        width: 90%;
    }

    .block-100-m {
        min-height: 1px;
        width: 100%;
    }


    /**hide elements**/
    .d-hide {
        display: block;
    }

    .m-hide {
        display: none;
    }

}


/*mobile small*/
@media only screen and (min-width:240px) and (max-width:320px) {

    .block-8_3-m_s {
        min-height: 1px;
        width: 8.33%;
    }

    .block-10-m_s {
        min-height: 1px;
        width: 10%;
    }

    .block-12_5-m_s {
        min-height: 1px;
        width: 12.5%;
    }

    .block-16_6-m_s {
        min-height: 1px;
        width: 16.66%;
    }

    .block-20-m_s {
        min-height: 1px;
        width: 20%;
    }

    .block-25-m_s {
        min-height: 1px;
        width: 25%;
    }

    .block-30-m_s {
        min-height: 1px;
        width: 30%;
    }

    .block-33-m_s {
        min-height: 1px;
        width: 33%;
    }

    .block-35-m_s {
        min-height: 1px;
        width: 35%;
    }

    .block-40-m {
        min-height: 1px;
        width: 40%;
    }

    .block-45-m {
        min-height: 1px;
        width: 45%;
    }

    .block-50-m_s {
        min-height: 1px;
        width: 50%;
    }

    .block-55-m_s {
        min-height: 1px;
        width: 55%;
    }

    .block-60-m_s {
        min-height: 1px;
        width: 60%;
    }

    .block-65-m_s {
        min-height: 1px;
        width: 65%;
    }

    .block-70-m_s {
        min-height: 1px;
        width: 70%;
    }

    .block-75-m_s {
        min-height: 1px;
        width: 75%;
    }

    .block-80-m_s {
        min-height: 1px;
        width: 80%;
    }

    .block-85-m_s {
        min-height: 1px;
        width: 85%;
    }

    .block-90-m_s {
        min-height: 1px;
        width: 90%;
    }

    .block-100-m_s {
        min-height: 1px;
        width: 100%;
    }

    /**hide elements**/
    .d-hide {
        display: block;
    }

    .m_s-hide {
        display: none;
    }
}


/*media query for mobile blocks ends*/

/***#######RESPONSIVE BLOCKS ENDS#######***/

/***#######SWIPER CSS#######***/
/**
 * Swiper 5.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 20, 2020
 */

@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: 'prev'
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #ffffff
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

/***#######SWIPER CSS ENDS#######***/



/***#######TYPOGRAPHY BEGINS#######***/

/***importing font-faces***/
@font-face {
    font-family: 'geometria';
    src: url('../fonts/webfonts/geometria-webfont.woff2') format('woff2'),
        url('../fonts/webfonts/geometria-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geometria-medium';
    src: url('../fonts/webfonts/geometria-bold-webfont.woff2') format('woff2'),
        url('../fonts/webfonts/geometria-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}

@font-face {
    font-family: 'geometria-bold';
    src: url('../fonts/webfonts/geometria-extablack-webfont.woff2') format('woff2'),
        url('../fonts/webfonts/geometria-extablack-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}

/*@font-face {
    font-family: 'geometria';
    src: url('../fonts/webfonts/geometria-medium-webfont.woff2') format('woff2'),
         url('../fonts/webfonts/geometria-medium-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}

@font-face {
    font-family: 'geometria';
    src: url('../fonts/webfonts/geometria-bold-webfont.woff2') format('woff2'),
         url('../fonts/webfonts/geometria-bold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;

}

@font-face {
    font-family: 'geometria';
    src: url('../fonts/webfonts/geometria-extablack-webfont.woff2') format('woff2'),
         url('../fonts/webfonts/geometria-extablack-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;

}*/



/***simple loader***/
.simple-loader {
    height: 100%;
    background-color: #222;
    position: fixed;
    transition: all 0.5s ease;
    z-index: 1100;
}

.loader-inr {
    height: 30px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

.loader-circle {
    animation: spin 0.5s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/***simple loader ends***/

/***logo play***/
.centered {
    float: left;
    left: 50%;
    position: relative;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

#logo {
    position: fixed;
    background-color: rgba(0, 0, 0, 0);
    height: 100%;
    z-index: 1000;
    transition: all 0.6s ease;
}

#logo.dark-bg {
    background-color: #222;
}

#logo-obj {
    -webkit-animation: shiftLogo 1.3s cubic-bezier(0.8, 0, 0.58, 1) forwards;
    animation: shiftLogo 1.3s cubic-bezier(0.8, 0, 0.58, 1) forwards;
    -webkit-animation-delay: 8.5s;
    animation-delay: 8.5s;
    float: left;
    height: 40%;
    width: 40%;
}

#logo-svg,
#logo-loop-svg {
    float: left;
    height: 100%;
    width: 100%;

}

.logo-disab {
    display: none;
}

/**logo loop**/
#logo-loop {
    height: 22%;
}

#logo-loop-obj {
    float: left;
    left: 50%;
    position: relative;
    top: 50%;
    -webkit-transform: translate3d(-50%, -40.1%, 0) scale(0.43);
    transform: translate3d(-50%, -40.1%, 0) scale(0.43);
    width: 22%;
}

/**animated circles**/
.svg-loop-circle {
    fill: rgba(255, 255, 255, 0);
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3px;
    transform-origin: center;
}

/*
.svg-loop-circle-anim:first-of-type{
	-webkit-animation: flipXY 2.1s ease infinite;
	animation: flipXY 2.1s ease infinite;
}

.svg-loop-circle-anim:nth-of-type(2){
	-webkit-animation: flipXYi 2.1s ease infinite;
	animation: flipXYi 2.1s ease infinite;
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
*/

/*.svg-loop-circle-anim:nth-of-type(3){
	-webkit-animation: flipXY 1.9s ease infinite;
	animation: flipXY 1.9s ease infinite;
}*/


/**static logo**/
#svg-loop-logo-use {
    fill: rgba(255, 255, 255, 0.6);
    stroke: rgba(255, 255, 255, 0);
}

/**svg name**/
#svg-name-use {

    fill: rgba(255, 255, 255, 0);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-dasharray: 5200px;
    stroke-dashoffset: 5200px;
    stroke-width: 3px;
    -webkit-transform-origin: center;
    transform-origin: center;
    /*	transition:stroke-dashoffset 3s linear, fill 1s linear, transform 0.8s ease;*/
}

.svg-name {
    -webkit-animation: drawName 3s ease forwards;
    animation: drawName 3s ease forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.svg-name-opa {
    -webkit-animation: opaName 1.5s cubic-bezier(0.8, 0, 0.58, 1) forwards;
    animation: opaName 1.5s cubic-bezier(0.8, 0, 0.58, 1) forwards;
}


/**svg circle**/
#svg-circle-use {

    fill: rgba(255, 255, 255, 0);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-dasharray: 2039px;
    stroke-dashoffset: 2039px;
    stroke-width: 4px;
    -webkit-transform-origin: center;
    transform-origin: center;
    /*	transition:stroke-dashoffset 3s linear, fill 1s linear, transform 0.8s ease;*/
}

.svg-circle {
    -webkit-animation: drawCircle 1s ease forwards;
    animation: drawCircle 1s ease forwards;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}


/**svg logo**/
#svg-logo-use {
    -webkit-animation: opaLogo 1.5s cubic-bezier(0.42, 0.04, 0.35, 0.97) forwards;
    animation: opaLogo 1.5s cubic-bezier(0.42, 0.04, 0.35, 0.97) forwards;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
    fill: rgba(255, 255, 255, 0);
    stroke: rgba(255, 255, 255, 0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
}


/**logo animations**/
@-webkit-keyframes drawName {
    0% {
        stroke-dashoffset: 5200px;
        -webkit-transform: scale(1);
        transform: scale(1);
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0.6);
    }

    33% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(1);
        transform: scale(1);
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0.6);
    }

    80% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(1);
        transform: scale(1);
        fill: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
    }

    100% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(0.47);
        transform: scale(0.47);
        fill: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
    }
}

@keyframes drawName {
    0% {
        stroke-dashoffset: 5200px;
        -webkit-transform: scale(1);
        transform: scale(1);
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0.6);
    }

    33% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(1);
        transform: scale(1);
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0.6);
    }

    80% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(1);
        transform: scale(1);
        fill: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
    }

    100% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(0.47);
        transform: scale(0.47);
        fill: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
    }
}

@-webkit-keyframes opaName {
    0% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(0.47);
        transform: scale(0.47);
        fill: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
    }

    100% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(0.02);
        transform: scale(0.02);
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0);
    }
}

@keyframes opaName {
    0% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(0.47);
        transform: scale(0.47);
        fill: rgba(255, 255, 255, 0.6);
        stroke: rgba(255, 255, 255, 0.6);
    }

    100% {
        stroke-dashoffset: 0px;
        -webkit-transform: scale(0.02);
        transform: scale(0.02);
        fill: rgba(255, 255, 255, 0);
        stroke: rgba(255, 255, 255, 0);
    }
}


@-webkit-keyframes drawCircle {
    0% {
        stroke-dashoffset: 2039px;
    }

    100% {
        stroke-dashoffset: 0px;
    }
}


@keyframes drawCircle {
    0% {
        stroke-dashoffset: 2039px;
    }

    100% {
        stroke-dashoffset: 0px;
    }
}

@-webkit-keyframes opaLogo {
    0% {
        fill: rgba(255, 255, 255, 0);
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    80% {
        fill: rgba(255, 255, 255, 0.6);
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    100% {
        fill: rgba(255, 255, 255, 0.6);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opaLogo {
    0% {
        fill: rgba(255, 255, 255, 0);
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    80% {
        fill: rgba(255, 255, 255, 0.6);
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    100% {
        fill: rgba(255, 255, 255, 0.6);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


@keyframes shiftLogo {
    0% {
        transform: translate3d(-50%, -50%, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate3d(-165%, -154.5%, 0) scale(0.210);
        opacity: 0.2;
    }
}

/**animated logo animations**/
@keyframes flipXY {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes flipXYi {
    0% {
        transform: rotateX(-360deg) rotateY(-360deg);
    }

    100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
}


/***logo play ends***/


/***importing font-faces ends***/
body {
    font-size: 1vw;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

body,
input {
    font-family: 'Montserrat', sans-serif;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/***header***/
.menu-main {
    position: fixed;
    z-index: 6;
    height: 20vh;
    padding: 2%;
}

.menu-logo {
    display: block;
    float: left;
    height: 4em;
    width: 4em;
}

.menu-btn-main {
    float: right;
}

.menu-btn {
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    height: 4em;
    width: 4em;
    overflow: hidden;
}

.menu-logo,
.menu-btn {
    opacity: 1;
    transition: all 0.6s ease;
}

.menu-logo:hover,
.menu-btn:hover {
    opacity: 0.6;
    transform: scale(0.85);
}

/*.menu-btn:hover .menu-cover{
    transform: translateX(-50%);
}*/

/*.menu-btn.menu-opened .menu-cover{
    transform: translateX(-50%);
}*/

.menu-cover {
    height: 4em;
    width: 4em;
    transition: all 0.4s ease;
}

.menu-btn-inr {
    float: left;
    height: 4em;
    width: 4em;
    position: absolute;
    transition: all 0.6s ease;
}

.menu-closed .menu-close {
    transform: scale(0.001);
}

.menu-opened .menu-open {
    transform: scale(0.001);
}

/***menu***/
.menu {
    height: 100vh;
    position: fixed;
    z-index: 5;
}

.menu-inr {
    height: 100%;
}

.menu-sec {
    float: left;
    height: 100%;
    overflow: hidden;
    width: 33.33%;
}

.menu-sec-inr {
    transition: all 1s ease;
}

.menu-sec1,
.menu-sec2,
.menu-sec3 {
    display: block;
    height: 100%;
    padding: 65% 5% 5% 11%;
    width: 100%;
}

.menu-sec1 {
    background-color: #333;
}

.menu-sec2 {
    background-color: #222;
}

.menu-sec3 {
    background-color: #000;
}

.menu-opt {
    color: #fff;
    display: inline-block;
    font-size: 3em;
    font-weight: 600;
    line-height: 1.5em;
    padding-bottom: 0.5em;
}

.menu-opt-line {
    border-top: 0.04em solid #fff;
    width: calc(100% + 0.1em);
    transform: scale(0.001);
    transition: all 0.6s ease;
    transform-origin: left;
}

.menu-opt-titl {
    color: #fff;
    font-size: 0.9em;
    font-weight: 500;
    opacity: 0;
    transition: all 0.6s ease;
}

.menu-sec:hover .menu-opt-line {
    transform: scale(1);
}

.menu-sec:hover .menu-opt-titl {
    opacity: 1;
}

.tiny {
    transform: scale(0.001);
}

/***wrapper***/
.wrapper {
    background-color: #222;
    transition: all 1s ease;
    overflow-x: hidden;
}

.fadeZoomed {
    opacity: 0.1;
    transform: scale(3);
}

.faded {
    opacity: 0.1;
}

/***Project Slider***/
#proslidesmob {
    display: none;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-container#proslides {
    height: 100vh;
}

.swiper-slide {
    /*text-align: center;*/
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/**slide inners**/
.swiper-slide.pro-slide {
    overflow: hidden;
    background-color: #222;
    transform: translateZ(0);
}

.pro-main {
    height: 100%;
    float: left;
    position: relative;
    width: 100%;
    transition: all 1s cubic-bezier(.02, .76, .45, .98);
}

.pro-bg,
.pro-titl {
    width: 100%;
}

.pro-bg-anim {
    background-size: cover;
    height: 100%;
    position: absolute;
    transition: all 8s linear;
}

.pro-bg {
    cursor: pointer;
    display: block;
    height: 100%;
    padding: 0 6% 0 6%;
    position: relative;
    width: 100%;
    z-index: 1;
}

.pro-main:hover .pro-bg-anim {
    transform: scale(1.3);
}

.pro-bg:hover .pro-txt {
    transform: scale(1);
    opacity: 1;
}

.pro-bg:hover .pro-titl {
    transform: translateY(0);
}

.pro-titl {
    bottom: 30%;
    color: #fff;
    font-size: 2.1em;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.06em;
    padding-bottom: 0.3em;
    padding-right: 10%;
    position: absolute;
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.5);
    transform: translateY(1.6em);
    transition: all 0.4s ease;
}

.pro-txt {
    bottom: 22.5%;
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.5em;
    opacity: 0;
    padding-right: 10%;
    position: absolute;
    transform: scale(0.001);
    transition: all 0.4s ease;
    transform-origin: bottom left;
}

.pro-link {
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    left: 6%;
    position: absolute;
    text-shadow: 0.05em 0.05em 0.1em rgba(0, 0, 0, 0.4);
    bottom: 15%;
    z-index: 2;
}

/**slide intro animation**/
.proLeftSlide {
    transform: translateX(-100%);
}

/**slider controls**/
.slide-nav {
    bottom: 0;
    position: fixed;
    z-index: 3;
    padding: 1.7% 2%;
}

.slide-prev,
.slide-next {
    display: inline-block;
}

.slide-prev-icon,
.slide-next-icon {
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 1em;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.slide-prev-txt,
.slide-next-txt {
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    line-height: 3rem;
    padding: 0 0.7em;
}

.slide-prev,
.slide-next {
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.slide-prev:hover,
.slide-next:hover {
    opacity: 1;
}

.slide-prev:focus,
.slide-next:focus {
    outline: none;
    border: 0;
}

.slide-next {
    float: right;
}

/***projects, about and contact animations***/
.my-image,
.my-info,
.pro-view {
    transition: all 0.7s ease;
}

.fadeInLt {
    opacity: 0;
    transform: translateX(-20%);
}

.fadeInRt {
    opacity: 0;
    transform: translateX(10%);
}

.fadeInDw {
    opacity: 0;
    transform: translateY(-5%);
}

/***about page***/
#about-me,
#contact {
    background-color: #fff;
}

.my-image {
    background-color: #000;
    width: 33%;
    position: fixed;
    min-height: 100vh;
}

.my-info {
    float: right;
    padding: 13% 3.5% 3% 3.5%;
    width: 67%;
}

.my-titl {
    font-size: 3em;
    font-weight: 600;
    padding-bottom: 2em;
}

.abt-blc {
    margin-bottom: 3em;
}

#contact .abt-blc {
    margin-bottom: 1em;
}

.abt-inr-blc {
    float: left;
    width: 50%;

}

.abt-spacer {
    margin-bottom: 1.7em;
}

.abt-blc-lt {
    float: left;
    width: 25%;
    padding-right: 7%;
}

.abt-blc-rt {
    float: left;
    width: 75%;
    padding-right: 12%;
}

.titl-s {
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 2em;
    padding-bottom: 0.4em;
}

.titl-line {
    border-top: 0.15em solid rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 1em;
}

.abt-txt {
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 2em;
    padding-bottom: 0.7em;
}

.abt-link {
    color: #000;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 2em;
    padding-bottom: 0.7em;
    transition: all 0.5s ease;
}

.abt-link:hover {
    opacity: 0.6;
}


.abt-list {
    font-size: 0.8em;
    font-weight: 600;
    line-height: 2em;
    padding-bottom: 2em;
}

.abt-list > li {
    padding-bottom: 0.2em;
}

/***====Project Inner nav====***/
#pro-nav.slide-nav{
    padding: 4%;
}

#pro-nav .slide-prev-txt, #pro-nav .slide-next-txt{
    display: none;
}

#pro-prev.disab, #pro-next.disab{
    display: none;
}



/***====Responsive====***/
@media only screen and (min-width: 960px) and (max-width: 1150px) {}

/***=====FOR MOBILE AND TABLETS=====***/
@media only screen and (min-width: 280px) and (max-width: 960px) and (orientation: portrait) {
    

    @keyframes shiftLogo {
        0% {
            transform: translate3d(-50%, -50%, 0) scale(1);
            opacity: 1;
        }

        100% {
            transform: translate3d(-91%, -93.5%, 0) scale(0.37);
            opacity: 0.2;
        }
    }
    
    body{
        font-size: 4vw;
    }
    
    #logo{
        width: 100%;
        padding: 0 5%;
    }
    
    #logo-obj{
        width: 100%;
        height: 100%;
    }
    
    #proslides {
        display: none;
    }

    #proslidesmob {
        display: block;
    }

    #slide-nav {
        display: none;
    }

    .pro-main {
        height: 110vw;
    }

    #proslidesmob .pro-main {
        overflow: hidden;
    }

    .pro-bg {
        padding: 96% 6% 0 6%
    }

    .pro-titl {
        font-size: 1.7em;
        line-height: 1.4em;
        padding-bottom: 0.3em;
        position: static;
        transform: translateY(-90%);
    }

    .pro-txt {
        display: none;
    }

    .pro-link {
        font-size: 1.1em;
        top: 90%;
    }

    .pro-bg:hover .pro-txt {
        transform: scale(0.001);
        opacity: 0;
    }

    .pro-bg:hover .pro-titl {
        transform: translateY(-90%);
    }

    /***menu***/
    .menu-main {
        padding: 5%;
    }

    .menu-sec {
        float: left;
        height: 33.33%;
        overflow: hidden;
        width: 100%;
    }

    .menu-sec1,
    .menu-sec2,
    .menu-sec3 {
        padding: 13.5vh 5% 5% 11%;
    }

    .menu-opt {
        font-size: 1.6em;
    }

    .menu-opt-titl {
        font-size: 0.8em;
        opacity: 1;
    }

    /**about and contact***/
    .my-image {
        width: 100%;
        position: static;
        min-height: 65vh;
    }

    .my-info {
        padding: 13% 7% 3% 7%;
        width: 100%;
    }

    .my-titl {
        font-size: 2em;
        padding-bottom: 1.8em;
    }

    .titl-line {
        margin-bottom: 0.5em;
    }

    .abt-blc-lt {
        width: 100%;
        padding-right: 0;
    }

    .abt-blc-rt {
        width: 100%;
        padding-right: 0;
    }

    .abt-inr-blc {
        width: 100%;
    }

    #contact .abt-blc {
        margin-bottom: 2em;
    }
}

@media only screen and (min-width: 280px) and (max-width: 960px) and (orientation: landscape) {}

/***=====FOR TABLETS=====***/
@media only screen and (min-width: 768px) and (max-width: 960px) {}

@media only screen and (min-width: 1600px)  {  
    .pro-titl{font-size:2.6em}
}

@media only screen and (min-width: 1920px)  {  
    .pro-titl{font-size:3em}
}







/***=====FOR SMARTPHONES=====***/