@import url('https://fonts.googleapis.com/css?family=Lato&display=swap&subset=latin-ext');

html,
body {
    height: 100%;
    font-family: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #001418;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

p {
    font-size: 18px;
    color: white;
    ;
    line-height: 1.8;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/*------------------------
  Helper css
--------------------------*/
.body-pad {
    padding: 0 40px;
}

.spad {
    padding: 100px 0;
}

.pt100 {
    padding-top: 100px;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    font-size: 60px;
}

.section-title span {
    color: #979797;
}

/*------------------------
  Common Elements
--------------------------*/
.element {
    margin-bottom: 100px;
}

.element:last-child {
    margin-bottom: 0;
}

/*=== Preloder ===*/
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    border-left-color: transparent;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

/*=== Buttons ===*/
.site-btn {
    display: inline-block;
    font-size: 20px;
    min-width: 150px;
    text-align: center;
    padding: 15px 15px;
    border-radius: 30%;
    position: relative;
    color: black;
    border: none;
    background-color: rgb(132, 252, 252);
    opacity: 0.8;
    margin-right: 15px;
    z-index: 1;

}

.site-btn:hover {
    transform: scale(1.3, 1.3);
    -webkit-transform: scale(1.3, 1.3);
    -moz-transform: scale(1.3, 1.3);
    transition: all .2s ease-in-out;
}

.site-btn.btn-fade {
    background-color: #979797;
}

.site-btn.btn-line {
    background: none;
    border: 2px solid #000;
    color: #000;
    padding: 13px 10px;
}

.site-btn.btn-line:hover {
    color: #000;
}

.site-btn.btn-line-fade {
    background: none;
    border: 2px solid #979797;
    color: #979797;
    padding: 13px 10px;
}

.site-btn.btn-line-fade:hover {
    color: #979797;
}

.site-btn:hover {
    color: #fff;
}

/*===  Accordion  ===*/
.accordion-area .panel {
    margin-bottom: 30px;
}

.accordion-area .panel-header {
    background: #000;
    color: #fff;
    display: block;
    padding: 12px 50px;
    padding-left: 30px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    border: 2px solid #000;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active {
    background: transparent;
    color: #000;
}

.accordion-area .panel-header.active .panel-link:after {
    content: "-";
    color: #000;
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
    content: "+";
}

.accordion-area .panel-link {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    border: none;
    cursor: pointer;
    background: transparent;
}

.accordion-area .panel-body p {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 25px;
}

.accordion-area .panel-body {
    padding: 0 5px;
}

.accordion-area .panel-link:after {
    content: "+";
    position: absolute;
    left: 50%;
    font-size: 16px;
    font-weight: 700;
    top: 50%;
    color: #fff;
    line-height: 16px;
    margin-top: -8px;
    margin-left: -4px;
}

/*===  Tab  ===*/
.tab-element .nav-tabs {
    border-bottom: none;
    margin-bottom: 35px;
}

.tab-element .nav-tabs .nav-link {
    border: 2px solid #000;
    background: #000;
    border-radius: 0;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding: 15px 40px;
    min-width: 118px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.tab-element .nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
}

.tab-element .nav-tabs .nav-link.active {
    background: transparent;
    color: #000;
}

.tab-element .tab-pane h4 {
    font-size: 18px;
    margin: 25px 0 20px;
}

.tab-element .tab-pane p {
    font-size: 14px;
}

.circle-progress {
    text-align: center;
    position: relative;
}

.circle-progress canvas {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.circle-progress .progress-info {
    position: absolute;
    width: 100%;
    top: 30%;
}

.circle-progress .progress-info h2 {
    font-size: 36px;
}

.circle-progress .progress-info p {
    color: #979797;
    font-size: 16px;
    line-height: normal;
}

/*===  Icon Box  ===*/
.icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.icon-box .icon h2 {
    font-size: 60px;
}

.icon-box .icon-box-content {
    padding-left: 25px;
    padding-top: 10px;
}

.icon-box .icon-box-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

/*------------------------
    Header Section
--------------------------*/

.header-section {
    padding-top: 40px;
    padding-bottom: 0;
    position: relative;
}

.site-logo {
    font-size: 26px;
    padding-top: 15px;
    /*margin-right: 30px !important;*/
}

.main-menu ul {
    list-style: none;
}

.main-menu ul li {
    display: inline;
}

.main-menu ul li a {
    display: inline-block;
    font-size: 28px;
    color: #001418;
    opacity: 0.6;
    margin-left: 40px;
    margin-right: 10px;
    padding: 20px 0 9px;
}

.main-menu ul li:first-child {
    margin-left: 80px;
}

.header-btn {
    float: right;
    margin-top: 7px;
    margin-right: 0;
}

.nav-switch {
    display: none;
}

/*------------------------
    Intro Section
--------------------------*/
.intro-section {
    padding: 0;
}

/*------------------------
    Portfolio Section
--------------------------*/
.portfolio-section {
    overflow: hidden;
}

.portfolio-filter {
    list-style: none;
    padding-bottom: 100px;
}

.portfolio-filter li {
    font-size: 16px;
    display: inline-block;
    margin-right: 30px;
    padding-bottom: 10px;
    color: #979797;
    cursor: pointer;
}

.portfolio-filter li.mixitup-control-active {
    color: #001418;
}

.portfolios-area .gallery-block {
    padding: 0;
}

.gallery-block {
    position: relative;
}

.portfolio-item {
    display: block;
    width: 100%;
    height: 600px;
    background-position: center center;
    position: relative;
    margin-bottom: 30px;
}

.portfolio-item .pi-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: transparent;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.portfolio-item .pi-inner h2 {
    opacity: 0;
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    left: 50px;
    bottom: 50px;
    color: #fff;
    letter-spacing: 10px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.portfolio-item:hover .pi-inner {
    background: rgba(0, 20, 24, 0.8);
}

.portfolio-item:hover .pi-inner h2 {
    opacity: 1;
    letter-spacing: 0;
}

.portfolio-meta {
    padding-bottom: 45px;
}

.portfolio-meta h2 {
    font-size: 24px;
}

.portfolio-meta p {
    font-size: 14px;
    color: #a6a6a6;
    margin-bottom: 0;
}

.portfolio-intro {
    display: block;
}

.img-popup-warp .mfp-content {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/*------------------------
    Footer Section
--------------------------*/
.footer-section {
    padding: 50px 0;
}

.footer-section .copyright {
    font-size: 12px;
    color: #979797;
}

.social-links {
    margin-top: 60px;
    margin-bottom: 40px;
    margin-left: -10px;
}

.social-links a {
    color: #979797;
    font-size: 15px;
    margin-right: 30px;
}

.social-links a:last-child {
    margin-right: 0;
}

/*------------------------
    About Page
--------------------------*/
.pic-frame {
    position: relative;
    padding-left: 25px;
    padding-bottom: 25px;
    display: inline-block;
}

.pic-frame:after {
    position: absolute;
    content: "";
    width: calc(100% - 25px);
    height: calc(100% - 25px);
    bottom: 0;
    left: 0;
    border: 2px solid #000;
    z-index: 1;
}

.milestone {
    margin-top: 15px;
}

.milestone h2 {
    font-size: 60px;
}

.milestone h2 span {
    font-size: 18px;
    color: #979797;
}

/*------------------------
    Blog Page
--------------------------*/
.blog-item {
    margin-bottom: 70px;
}

.blog-item .read-more {
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 18px;
    font-size: 18px;
}

.blog-item .read-more:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #000;
}

.thumb {
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content .blog-meta {
    font-size: 13px;
    color: #979797;
    margin-bottom: 30px;
}

.blog-content p {
    margin-bottom: 30px;
}

/*------------------------
    Contact Page
--------------------------*/
.contect-tect {
    text-align: center;
    margin-bottom: 70px;
}

.contect-tect h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contect-tect p {
    font-size: 17px;
}

.contact-form {
    display: block;
    width: 100%;
}

.contact-form input {
    padding-left: 25px;
    height: 60px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-form textarea {
    padding-left: 25px;
    height: 200px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-form ::-webkit-input-placeholder {
    font-style: italic;
}

.contact-form :-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::placeholder {
    font-style: italic;
}

/* ===========================
  Responsive
==============================*/
@media only screen and (min-width: 1650px) {
    .home-2.container {
        width: auto;
    }

    .header-section {
        margin: auto!important;
        width: 57%!important;
    }

    .carousel {
        margin: auto;
    }

    .c-w {
        width: 100%;
    }

    .main-title {
        margin-bottom: 450px;
        margin-right: 15px;
        background-color: rgba(204, 255, 255, 0.568);
        border-radius: 10px;
        padding-top: 7px;
        padding-bottom: 10px;
    }
}


@media only screen and (max-width: 1448px) {
    .home-2.container {
        width: auto;
    }

    .header-section {
        margin: 10%;
        width: 73%;
    }

    .main-title {
        margin-bottom: 200px;
        margin-right: 50px;
        background-color: rgba(204, 255, 255, 0.568);
        border-radius: 10px;
        padding-top: 7px;
        padding-bottom: 10px;
    }
}

@media only screen and (min-width: 1448px) {
    .home-2.container {
        width: auto;
    }

    .header-section {
        margin: auto;
        width: 73%;
    }

    .carousel {
        margin: auto;
    }

    .c-w {
        width: 100%;
    }

    .main-title {
        margin-bottom: 450px;
        margin-right: 15px;
        background-color: rgba(204, 255, 255, 0.568);
        border-radius: 10px;
        padding-top: 7px;
        padding-bottom: 10px;
    }
}




/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .portfolio-item {
        height: 450px;
    }

    .header-section {
        margin: 10%;
        width: 50%;
    }

    .main-title {
        margin-bottom: 250px;
        margin-right: 50px;
        background-color: rgba(204, 255, 255, 0.568);
        border-radius: 10px;
        padding-top: 7px;
    }

}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .body-pad {
        padding: 0 30px;
    }

    .portfolio-item {
        height: 350px;
    }

    .header-section {
        margin: 10%;
        width: 60%;
    }

    .main-title {
        margin-bottom: 50px;
        margin-right: 50px;
        background-color: rgba(204, 255, 255, 0.568);
        border-radius: 10px;
        padding-top: 7px;
    }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
    .body-pad {
        padding: 0 15px;
    }

    .main-menu {
        position: absolute;
        background: rgb(84, 238, 161);
        width: 100%;
        z-index: 999;
        left: 0;
        top: 70px;
        padding-top: 15px;
        display: none;
    }

    .main-menu ul li a {
        padding: 10px 15px;
        border-bottom: 1px solid #ddd;
        display: block;
    }

    .main-menu ul li {
        display: block;
    }

    .main-menu ul li:last-child a {
        border-bottom: none;
    }

    .home-2 {
        text-align: left;
    }

    .home-2 .main-menu {
        top: 99px;
    }

    .nav-switch {
        position: absolute;
        right: auto;
        font-size: 50px;
        color: #333;
        top: 70px;
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-title {
        font-size: 45px;
    }

    .portfolio-filter {
        text-align: center;
    }

    .site-logo {
        display: none;
    }

    .main-title {
        margin-bottom: 200px;
        margin-right: 50px;
        background-color: rgba(204, 255, 255, 0.568);
        border-radius: 10px;
        padding-top: 7px;
    }

}

/* small Mobile :320px. */
@media only screen and (max-width: 479px) {
    .section-title {
        font-size: 30px;
    }
}

.sticky {
    position: fixed;
    top: 35px;
    z-index: 1;
}

.sticky-sw {
    position: fixed;
    z-index: 1;
}

.center {
    margin: auto;
    width: 50%;
}

.contact {
    background-color: rgb(99, 99, 99);
}

.info {
    margin: auto;
    text-align: center;
    width: 50%;
}

.info p {
    font-size: 22px;
    text-align: center;
}

.infofooter {
    bottom: 0;
    margin: auto;
    text-align: center;
    width: 50%;
}

.text-section {
    background-color: rgb(204, 255, 255);
    text-align: center;
    padding: 25px 25px;
    font-size: 20px;
}

.center-text {
    text-align: center;
}

.text-left {
    text-align: left;
}

.font-size {
    font-size: 22px;
}

.mgb {
    margin-bottom: 30px;
    margin-top: 40px;
    background-color: rgb(204, 255, 255);
    ;
}

.nfo {
    color: white;
    font-size: 22px;
    margin-right: 7px;
}

.nfo:hover {
    color: rgb(84, 238, 161);
}

.black {
    color: black!important;
}
.prc {
    padding-top: 10px;
}

.fa.fa-bars {
    opacity: 0.6;
}

.column {
    float: left;
    width: 50%;
    padding-top: 30px;
    padding-left: 30px;
    font-size: 22px;
}

/* Clear floats after the columns */
.clear:after {
    content: "";
    display: table;
    clear: both;
}

.marton {
    width: 25%;
    float: right;
    margin-right: 30px;
}

.binfo {
    text-align: left;
    color: #000;
    font-weight: 800;
    padding-top: 280px;
}

.galeria-title {
    font-size: 2.5rem;
}


@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }

    .binfo {
        padding-top: 15px;
    }
}

.copyright {
    bottom: 0;
}


/*.carousel-control-next,
.carousel-control-prev {
    display: none;
}*/

.carousel-control-prev-icon,
.carousel-control-next-icon {
  outline: black;
  border-radius: 0%;
  border: 0px solid black;
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: rgb(204, 255, 255);
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: rgb(204, 255, 255);
}

.middle {
    width: 70%;
    margin: auto;
}

.jus {
    text-align: justify;
}

.empty {
    height: 70px;
}

@-webkit-keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}

@media (print),
(prefers-reduced-motion: reduce) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

@media screen and (max-width: 767px) {
    #phone-img {
        content: url("../img/arak_phone.jpg");
    }
}

@media screen and (min-width: 768px) {
    #phone-img {
        content: url("../img/arak_phone.jpg");
    }
}

@media (min-width: 992px) {
    #phone-img {
        content: url("../img/arak11.jpg");
    }
}

@media (min-width: 1200px) {
    #phone-img {
        content: url("../img/arak11.jpg");
    }
}

@media screen and (max-width: 767px) {
    #phone-img2 {
        content: url("../img/arak-2_phone.jpg");
    }
}

@media screen and (min-width: 768px) {
    #phone-img2 {
        content: url("../img/arak-2_phone.jpg");
    }
}

@media (min-width: 992px) {
    #phone-img2 {
        content: url("../img/arak22.jpg");
    }
}

@media (min-width: 1200px) {
    #phone-img2 {
        content: url("../img/arak22.jpg");
    }
}

@media screen and (min-width: 0px) and (max-width: 400px) {
    .bg-w {
        background-color: none;
    }

    .marton {
        width: 40%;
        float: left;
        margin-right: 30px;
    }

    .nfo {
        margin: -50px;
    }

    .main-menu ul li:first-child {
        margin-left: 0px;
        }

}

@media screen and (min-width: 401px) and (max-width: 599px) {
    .bg-w {
        background-color: none;
    }

    .marton {
        width: 40%;
        float: left;
        margin-right: 30px;
    }

    .jus {
        text-align: left;
    }

    .middle {
        width: 100%;
        padding-left: 10px;
        margin: auto;
    }

    .column {
        float: none;
        width: 100%;
        padding-top: 30px;
        padding-left: 30px;
        font-size: 22px;
    }
    .main-menu ul li:first-child {
    margin-left: 0px;
    }

    .nfo {
     margin: -50px;
    }
}

@media screen and (min-width: 600px) {
    .bg-w {
        background-color: white;
        border-radius: 25px;
    }

}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.stickytop {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .weight { 
      font-weight: 500;
  }
  
