.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #bbbbbb !important;
}
.bg-success {
  background-color: #6ec7f2 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #6ec7f2;
  color: #6ec7f2;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1ea8eb !important;
  background-color: transparent!important;
  border-color: #1ea8eb !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bbbbbb !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #6ec7f2 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #888888 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #15a1e5 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bbbbbb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #bbbbbb;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bbbbbb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23bbbbbb' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sXUW6XCYbj {
  z-index: 1000;
  width: 100%;
}
.cid-sXUW6XCYbj nav.navbar {
  position: fixed;
}
.cid-sXUW6XCYbj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sXUW6XCYbj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sXUW6XCYbj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sXUW6XCYbj .dropdown-item:hover,
.cid-sXUW6XCYbj .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-sXUW6XCYbj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sXUW6XCYbj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sXUW6XCYbj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sXUW6XCYbj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sXUW6XCYbj .nav-link {
  position: relative;
}
.cid-sXUW6XCYbj .container {
  display: flex;
  margin: auto;
}
.cid-sXUW6XCYbj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sXUW6XCYbj .dropdown-menu,
.cid-sXUW6XCYbj .navbar.opened {
  background: #47b5ed !important;
}
.cid-sXUW6XCYbj .nav-item:focus,
.cid-sXUW6XCYbj .nav-link:focus {
  outline: none;
}
.cid-sXUW6XCYbj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sXUW6XCYbj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sXUW6XCYbj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sXUW6XCYbj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sXUW6XCYbj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sXUW6XCYbj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sXUW6XCYbj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-sXUW6XCYbj .navbar.opened {
  transition: all 0.3s;
}
.cid-sXUW6XCYbj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sXUW6XCYbj .navbar .navbar-logo img {
  width: auto;
}
.cid-sXUW6XCYbj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sXUW6XCYbj .navbar.collapsed {
  justify-content: center;
}
.cid-sXUW6XCYbj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sXUW6XCYbj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sXUW6XCYbj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sXUW6XCYbj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sXUW6XCYbj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sXUW6XCYbj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sXUW6XCYbj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sXUW6XCYbj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sXUW6XCYbj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sXUW6XCYbj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sXUW6XCYbj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sXUW6XCYbj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sXUW6XCYbj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sXUW6XCYbj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sXUW6XCYbj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sXUW6XCYbj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sXUW6XCYbj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sXUW6XCYbj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sXUW6XCYbj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sXUW6XCYbj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sXUW6XCYbj .navbar.navbar-short {
  min-height: 60px;
}
.cid-sXUW6XCYbj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sXUW6XCYbj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sXUW6XCYbj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sXUW6XCYbj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sXUW6XCYbj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sXUW6XCYbj .dropdown-item.active,
.cid-sXUW6XCYbj .dropdown-item:active {
  background-color: transparent;
}
.cid-sXUW6XCYbj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sXUW6XCYbj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sXUW6XCYbj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sXUW6XCYbj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-sXUW6XCYbj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sXUW6XCYbj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sXUW6XCYbj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sXUW6XCYbj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sXUW6XCYbj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sXUW6XCYbj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sXUW6XCYbj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sXUW6XCYbj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sXUW6XCYbj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sXUW6XCYbj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sXUW6XCYbj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sXUW6XCYbj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sXUW6XCYbj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sXUW6XCYbj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sXUW6XCYbj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sXUW6XCYbj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sXUW6XCYbj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sXUW6XCYbj .navbar {
    height: 70px;
  }
  .cid-sXUW6XCYbj .navbar.opened {
    height: auto;
  }
  .cid-sXUW6XCYbj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sXUWcgpLmx {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-sXUWcgpLmx .mbr-section-title {
  color: #ffffff;
}
.cid-sXUWcgpLmx .mbr-text,
.cid-sXUWcgpLmx .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utokXMgEx3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utokXMgEx3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utokXMgEx3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utokXMgEx3 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utokXMgEx3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utokXMgEx3 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sXUWeTfHDr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sXUWeTfHDr img,
.cid-sXUWeTfHDr .item-img {
  width: 100%;
}
.cid-sXUWeTfHDr .item:focus,
.cid-sXUWeTfHDr span:focus {
  outline: none;
}
.cid-sXUWeTfHDr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sXUWeTfHDr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sXUWeTfHDr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sXUWeTfHDr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sXUWeTfHDr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sXUWeTfHDr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sXUWeTfHDr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sXUWeTfHDr .mbr-section-title {
  color: #232323;
}
.cid-sXUWeTfHDr .mbr-text,
.cid-sXUWeTfHDr .mbr-section-btn {
  text-align: left;
}
.cid-sXUWeTfHDr .item-title {
  text-align: left;
}
.cid-sXUWeTfHDr .item-subtitle {
  text-align: center;
}
.cid-sXUWlL1eD4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2299aa;
}
.cid-sXUWlL1eD4 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sXUWlL1eD4 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utogobLOur {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utogobLOur h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utogobLOur p {
  color: #767676;
  text-align: left;
}
.cid-utogobLOur .card-box {
  padding-top: 2rem;
}
.cid-utogobLOur .card-wrapper {
  height: 100%;
}
.cid-utogobLOur P {
  text-align: left;
}
.cid-utogobLOur .card-title {
  text-align: left;
}
.cid-utonANprBr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utonANprBr .mbr-fallback-image.disabled {
  display: none;
}
.cid-utonANprBr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utolZtHAJM {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utolZtHAJM .mbr-fallback-image.disabled {
  display: none;
}
.cid-utolZtHAJM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utolZtHAJM .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utolZtHAJM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utolZtHAJM .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-sYchQToz8v {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-sYchQToz8v .video-wrapper iframe {
  width: 100%;
}
.cid-sYchQToz8v .mbr-section-title,
.cid-sYchQToz8v .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYchQToz8v .text-wrapper {
    padding: 2rem;
  }
}
.cid-tuVfZLsNVU {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tuVfZLsNVU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tuVfZLsNVU form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tuVfZLsNVU form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tuVfZLsNVU form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tuVfZLsNVU textarea {
  min-height: 10rem;
}
.cid-tuVfZLsNVU .mbr-section-subtitle {
  color: #7a0921;
}
.cid-sXUWx4pnUg {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-sXUWx4pnUg .row {
    flex-direction: column-reverse;
  }
  .cid-sXUWx4pnUg .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sXUWx4pnUg .google-map {
  height: 100%;
  position: relative;
}
.cid-sXUWx4pnUg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sXUWx4pnUg .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sXUWx4pnUg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sXUWx4pnUg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sXUWx4pnUg .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sXUWx4pnUg .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-sXUWx4pnUg .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-sXUWx4pnUg .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sXUWx4pnUg .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sXUWx4pnUg .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-sXUWx4pnUg P {
  color: #353535;
}
.cid-upgTST5Uow {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-upgTST5Uow .row-links {
  width: 100%;
  justify-content: center;
}
.cid-upgTST5Uow .social-row {
  width: 100%;
  justify-content: center;
}
.cid-upgTST5Uow .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-upgTST5Uow .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-upgTST5Uow .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-upgTST5Uow .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-upgTST5Uow .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-upgTST5Uow .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-upgTST5Uow .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-upgTST5Uow .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-upgTST5Uow .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-upgTST5Uow .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-upgTST5Uow .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-upgTST5Uow .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-upgTST5Uow .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-upte0CI9A5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-upte0CI9A5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upte0CI9A5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upte0CI9A5 .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-upte0CI9A5 .number {
  color: #f10303;
}
.cid-upte0CI9A5 .period {
  display: block;
}
.cid-upte0CI9A5 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-upte0CI9A5 .period {
    font-size: 0.8rem;
  }
}
.cid-upte0CI9A5 .btn {
  height: 100%;
  margin: 0;
}
.cid-upte0CI9A5 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-upte0CI9A5 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-upte0CI9A5 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-upte0CI9A5 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-upte0CI9A5 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utoqE3fTfE {
  z-index: 1000;
  width: 100%;
}
.cid-utoqE3fTfE nav.navbar {
  position: fixed;
}
.cid-utoqE3fTfE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utoqE3fTfE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utoqE3fTfE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utoqE3fTfE .dropdown-item:hover,
.cid-utoqE3fTfE .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utoqE3fTfE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utoqE3fTfE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utoqE3fTfE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utoqE3fTfE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utoqE3fTfE .nav-link {
  position: relative;
}
.cid-utoqE3fTfE .container {
  display: flex;
  margin: auto;
}
.cid-utoqE3fTfE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utoqE3fTfE .dropdown-menu,
.cid-utoqE3fTfE .navbar.opened {
  background: #47b5ed !important;
}
.cid-utoqE3fTfE .nav-item:focus,
.cid-utoqE3fTfE .nav-link:focus {
  outline: none;
}
.cid-utoqE3fTfE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utoqE3fTfE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utoqE3fTfE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utoqE3fTfE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utoqE3fTfE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utoqE3fTfE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utoqE3fTfE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utoqE3fTfE .navbar.opened {
  transition: all 0.3s;
}
.cid-utoqE3fTfE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utoqE3fTfE .navbar .navbar-logo img {
  width: auto;
}
.cid-utoqE3fTfE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utoqE3fTfE .navbar.collapsed {
  justify-content: center;
}
.cid-utoqE3fTfE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utoqE3fTfE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utoqE3fTfE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utoqE3fTfE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utoqE3fTfE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utoqE3fTfE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utoqE3fTfE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utoqE3fTfE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utoqE3fTfE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utoqE3fTfE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utoqE3fTfE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utoqE3fTfE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utoqE3fTfE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utoqE3fTfE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utoqE3fTfE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utoqE3fTfE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utoqE3fTfE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utoqE3fTfE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utoqE3fTfE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utoqE3fTfE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utoqE3fTfE .navbar.navbar-short {
  min-height: 60px;
}
.cid-utoqE3fTfE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utoqE3fTfE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utoqE3fTfE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utoqE3fTfE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utoqE3fTfE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utoqE3fTfE .dropdown-item.active,
.cid-utoqE3fTfE .dropdown-item:active {
  background-color: transparent;
}
.cid-utoqE3fTfE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utoqE3fTfE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utoqE3fTfE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utoqE3fTfE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utoqE3fTfE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utoqE3fTfE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utoqE3fTfE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utoqE3fTfE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utoqE3fTfE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utoqE3fTfE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utoqE3fTfE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utoqE3fTfE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utoqE3fTfE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utoqE3fTfE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utoqE3fTfE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utoqE3fTfE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utoqE3fTfE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utoqE3fTfE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utoqE3fTfE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utoqE3fTfE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utoqE3fTfE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utoqE3fTfE .navbar {
    height: 70px;
  }
  .cid-utoqE3fTfE .navbar.opened {
    height: auto;
  }
  .cid-utoqE3fTfE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utoqE5Gtzm {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utoqE5Gtzm .mbr-section-title {
  color: #ffffff;
}
.cid-utoqE5Gtzm .mbr-text,
.cid-utoqE5Gtzm .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utoqE8la6w {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utoqE8la6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-utoqE8la6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utoqE8la6w .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utoqE8la6w .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utoqE8la6w .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utoqE9HCbm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utoqE9HCbm img,
.cid-utoqE9HCbm .item-img {
  width: 100%;
}
.cid-utoqE9HCbm .item:focus,
.cid-utoqE9HCbm span:focus {
  outline: none;
}
.cid-utoqE9HCbm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utoqE9HCbm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utoqE9HCbm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utoqE9HCbm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utoqE9HCbm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utoqE9HCbm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utoqE9HCbm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utoqE9HCbm .mbr-section-title {
  color: #232323;
}
.cid-utoqE9HCbm .mbr-text,
.cid-utoqE9HCbm .mbr-section-btn {
  text-align: left;
}
.cid-utoqE9HCbm .item-title {
  text-align: left;
}
.cid-utoqE9HCbm .item-subtitle {
  text-align: center;
}
.cid-utoqEblXHk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utoqEblXHk .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utoqEblXHk .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utoqEc0o68 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utoqEc0o68 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utoqEc0o68 p {
  color: #767676;
  text-align: left;
}
.cid-utoqEc0o68 .card-box {
  padding-top: 2rem;
}
.cid-utoqEc0o68 .card-wrapper {
  height: 100%;
}
.cid-utoqEc0o68 P {
  text-align: left;
}
.cid-utoqEc0o68 .card-title {
  text-align: left;
}
.cid-utoqEdu0rw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utoqEdu0rw .mbr-fallback-image.disabled {
  display: none;
}
.cid-utoqEdu0rw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utoqEeR1W2 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utoqEeR1W2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utoqEeR1W2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utoqEeR1W2 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utoqEeR1W2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utoqEeR1W2 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utoqEgkwbr {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utoqEgkwbr .video-wrapper iframe {
  width: 100%;
}
.cid-utoqEgkwbr .mbr-section-title,
.cid-utoqEgkwbr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utoqEgkwbr .text-wrapper {
    padding: 2rem;
  }
}
.cid-utoqEhsF16 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utoqEhsF16 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utoqEhsF16 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utoqEhsF16 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utoqEhsF16 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utoqEhsF16 textarea {
  min-height: 10rem;
}
.cid-utoqEhsF16 .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utoqEijtJD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utoqEijtJD .row {
    flex-direction: column-reverse;
  }
  .cid-utoqEijtJD .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utoqEijtJD .google-map {
  height: 100%;
  position: relative;
}
.cid-utoqEijtJD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utoqEijtJD .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utoqEijtJD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utoqEijtJD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utoqEijtJD .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utoqEijtJD .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utoqEijtJD .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utoqEijtJD .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utoqEijtJD .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utoqEijtJD .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utoqEijtJD P {
  color: #353535;
}
.cid-utoqEl9ahn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utoqEl9ahn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utoqEl9ahn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utoqEl9ahn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utoqEl9ahn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utoqEl9ahn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utoqEl9ahn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utoqEl9ahn .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utoqEl9ahn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utoqEl9ahn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utoqEl9ahn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utoqEl9ahn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utoqEl9ahn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utoqEl9ahn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utoqEl9ahn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utoqEl9ahn .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utoqEmj1No {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utoqEmj1No .mbr-fallback-image.disabled {
  display: none;
}
.cid-utoqEmj1No .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utoqEmj1No .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utoqEmj1No .number {
  color: #f10303;
}
.cid-utoqEmj1No .period {
  display: block;
}
.cid-utoqEmj1No .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utoqEmj1No .period {
    font-size: 0.8rem;
  }
}
.cid-utoqEmj1No .btn {
  height: 100%;
  margin: 0;
}
.cid-utoqEmj1No .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utoqEmj1No .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utoqEmj1No .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utoqEmj1No .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utoqEmj1No .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utos6jA33a {
  z-index: 1000;
  width: 100%;
}
.cid-utos6jA33a nav.navbar {
  position: fixed;
}
.cid-utos6jA33a .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utos6jA33a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utos6jA33a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utos6jA33a .dropdown-item:hover,
.cid-utos6jA33a .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utos6jA33a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utos6jA33a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utos6jA33a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utos6jA33a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utos6jA33a .nav-link {
  position: relative;
}
.cid-utos6jA33a .container {
  display: flex;
  margin: auto;
}
.cid-utos6jA33a .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utos6jA33a .dropdown-menu,
.cid-utos6jA33a .navbar.opened {
  background: #47b5ed !important;
}
.cid-utos6jA33a .nav-item:focus,
.cid-utos6jA33a .nav-link:focus {
  outline: none;
}
.cid-utos6jA33a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utos6jA33a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utos6jA33a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utos6jA33a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utos6jA33a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utos6jA33a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utos6jA33a .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utos6jA33a .navbar.opened {
  transition: all 0.3s;
}
.cid-utos6jA33a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utos6jA33a .navbar .navbar-logo img {
  width: auto;
}
.cid-utos6jA33a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utos6jA33a .navbar.collapsed {
  justify-content: center;
}
.cid-utos6jA33a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utos6jA33a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utos6jA33a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utos6jA33a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utos6jA33a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utos6jA33a .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utos6jA33a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utos6jA33a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utos6jA33a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utos6jA33a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utos6jA33a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utos6jA33a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utos6jA33a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utos6jA33a .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utos6jA33a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utos6jA33a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utos6jA33a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utos6jA33a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utos6jA33a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utos6jA33a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utos6jA33a .navbar.navbar-short {
  min-height: 60px;
}
.cid-utos6jA33a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utos6jA33a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utos6jA33a .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utos6jA33a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utos6jA33a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utos6jA33a .dropdown-item.active,
.cid-utos6jA33a .dropdown-item:active {
  background-color: transparent;
}
.cid-utos6jA33a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utos6jA33a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utos6jA33a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utos6jA33a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utos6jA33a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utos6jA33a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utos6jA33a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utos6jA33a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utos6jA33a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utos6jA33a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utos6jA33a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utos6jA33a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utos6jA33a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utos6jA33a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utos6jA33a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utos6jA33a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utos6jA33a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utos6jA33a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utos6jA33a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utos6jA33a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utos6jA33a .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utos6jA33a .navbar {
    height: 70px;
  }
  .cid-utos6jA33a .navbar.opened {
    height: auto;
  }
  .cid-utos6jA33a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utos6lVLOc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utos6lVLOc .mbr-section-title {
  color: #ffffff;
}
.cid-utos6lVLOc .mbr-text,
.cid-utos6lVLOc .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utos6nkEaP {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utos6nkEaP .mbr-fallback-image.disabled {
  display: none;
}
.cid-utos6nkEaP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utos6nkEaP .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utos6nkEaP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utos6nkEaP .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utos6oXLBj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utos6oXLBj img,
.cid-utos6oXLBj .item-img {
  width: 100%;
}
.cid-utos6oXLBj .item:focus,
.cid-utos6oXLBj span:focus {
  outline: none;
}
.cid-utos6oXLBj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utos6oXLBj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utos6oXLBj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utos6oXLBj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utos6oXLBj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utos6oXLBj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utos6oXLBj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utos6oXLBj .mbr-section-title {
  color: #232323;
}
.cid-utos6oXLBj .mbr-text,
.cid-utos6oXLBj .mbr-section-btn {
  text-align: left;
}
.cid-utos6oXLBj .item-title {
  text-align: left;
}
.cid-utos6oXLBj .item-subtitle {
  text-align: center;
}
.cid-utos6qC3wM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utos6qC3wM .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utos6qC3wM .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utos6rkZE1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utos6rkZE1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utos6rkZE1 p {
  color: #767676;
  text-align: left;
}
.cid-utos6rkZE1 .card-box {
  padding-top: 2rem;
}
.cid-utos6rkZE1 .card-wrapper {
  height: 100%;
}
.cid-utos6rkZE1 P {
  text-align: left;
}
.cid-utos6rkZE1 .card-title {
  text-align: left;
}
.cid-utos6sG2EP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utos6sG2EP .mbr-fallback-image.disabled {
  display: none;
}
.cid-utos6sG2EP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utos6tWjQb {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utos6tWjQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-utos6tWjQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utos6tWjQb .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utos6tWjQb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utos6tWjQb .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utos6vsGNo {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utos6vsGNo .video-wrapper iframe {
  width: 100%;
}
.cid-utos6vsGNo .mbr-section-title,
.cid-utos6vsGNo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utos6vsGNo .text-wrapper {
    padding: 2rem;
  }
}
.cid-utos6wzY6K {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utos6wzY6K .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utos6wzY6K form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utos6wzY6K form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utos6wzY6K form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utos6wzY6K textarea {
  min-height: 10rem;
}
.cid-utos6wzY6K .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utos6xAcIV {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utos6xAcIV .row {
    flex-direction: column-reverse;
  }
  .cid-utos6xAcIV .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utos6xAcIV .google-map {
  height: 100%;
  position: relative;
}
.cid-utos6xAcIV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utos6xAcIV .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utos6xAcIV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utos6xAcIV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utos6xAcIV .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utos6xAcIV .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utos6xAcIV .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utos6xAcIV .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utos6xAcIV .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utos6xAcIV .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utos6xAcIV P {
  color: #353535;
}
.cid-utos6AmaiV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utos6AmaiV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utos6AmaiV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utos6AmaiV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utos6AmaiV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utos6AmaiV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utos6AmaiV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utos6AmaiV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utos6AmaiV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utos6AmaiV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utos6AmaiV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utos6AmaiV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utos6AmaiV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utos6AmaiV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utos6AmaiV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utos6AmaiV .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utos6Bx7Bh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utos6Bx7Bh .mbr-fallback-image.disabled {
  display: none;
}
.cid-utos6Bx7Bh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utos6Bx7Bh .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utos6Bx7Bh .number {
  color: #f10303;
}
.cid-utos6Bx7Bh .period {
  display: block;
}
.cid-utos6Bx7Bh .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utos6Bx7Bh .period {
    font-size: 0.8rem;
  }
}
.cid-utos6Bx7Bh .btn {
  height: 100%;
  margin: 0;
}
.cid-utos6Bx7Bh .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utos6Bx7Bh .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utos6Bx7Bh .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utos6Bx7Bh .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utos6Bx7Bh .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utouWy63LC {
  z-index: 1000;
  width: 100%;
}
.cid-utouWy63LC nav.navbar {
  position: fixed;
}
.cid-utouWy63LC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utouWy63LC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utouWy63LC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utouWy63LC .dropdown-item:hover,
.cid-utouWy63LC .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utouWy63LC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utouWy63LC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utouWy63LC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utouWy63LC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utouWy63LC .nav-link {
  position: relative;
}
.cid-utouWy63LC .container {
  display: flex;
  margin: auto;
}
.cid-utouWy63LC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utouWy63LC .dropdown-menu,
.cid-utouWy63LC .navbar.opened {
  background: #47b5ed !important;
}
.cid-utouWy63LC .nav-item:focus,
.cid-utouWy63LC .nav-link:focus {
  outline: none;
}
.cid-utouWy63LC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utouWy63LC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utouWy63LC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utouWy63LC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utouWy63LC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utouWy63LC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utouWy63LC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utouWy63LC .navbar.opened {
  transition: all 0.3s;
}
.cid-utouWy63LC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utouWy63LC .navbar .navbar-logo img {
  width: auto;
}
.cid-utouWy63LC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utouWy63LC .navbar.collapsed {
  justify-content: center;
}
.cid-utouWy63LC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utouWy63LC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utouWy63LC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utouWy63LC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utouWy63LC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utouWy63LC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utouWy63LC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utouWy63LC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utouWy63LC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utouWy63LC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utouWy63LC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utouWy63LC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utouWy63LC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utouWy63LC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utouWy63LC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utouWy63LC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utouWy63LC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utouWy63LC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utouWy63LC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utouWy63LC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utouWy63LC .navbar.navbar-short {
  min-height: 60px;
}
.cid-utouWy63LC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utouWy63LC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utouWy63LC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utouWy63LC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utouWy63LC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utouWy63LC .dropdown-item.active,
.cid-utouWy63LC .dropdown-item:active {
  background-color: transparent;
}
.cid-utouWy63LC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utouWy63LC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utouWy63LC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utouWy63LC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utouWy63LC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utouWy63LC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utouWy63LC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utouWy63LC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utouWy63LC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utouWy63LC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utouWy63LC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utouWy63LC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utouWy63LC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utouWy63LC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utouWy63LC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utouWy63LC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utouWy63LC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utouWy63LC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utouWy63LC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utouWy63LC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utouWy63LC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utouWy63LC .navbar {
    height: 70px;
  }
  .cid-utouWy63LC .navbar.opened {
    height: auto;
  }
  .cid-utouWy63LC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utouWABgvJ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utouWABgvJ .mbr-section-title {
  color: #ffffff;
}
.cid-utouWABgvJ .mbr-text,
.cid-utouWABgvJ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utouWC1YZ8 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utouWC1YZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utouWC1YZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utouWC1YZ8 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utouWC1YZ8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utouWC1YZ8 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utouWDFXyS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utouWDFXyS img,
.cid-utouWDFXyS .item-img {
  width: 100%;
}
.cid-utouWDFXyS .item:focus,
.cid-utouWDFXyS span:focus {
  outline: none;
}
.cid-utouWDFXyS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utouWDFXyS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utouWDFXyS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utouWDFXyS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utouWDFXyS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utouWDFXyS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utouWDFXyS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utouWDFXyS .mbr-section-title {
  color: #232323;
}
.cid-utouWDFXyS .mbr-text,
.cid-utouWDFXyS .mbr-section-btn {
  text-align: left;
}
.cid-utouWDFXyS .item-title {
  text-align: left;
}
.cid-utouWDFXyS .item-subtitle {
  text-align: center;
}
.cid-utouWFgNe3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utouWFgNe3 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utouWFgNe3 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utouWGaDET {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utouWGaDET h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utouWGaDET p {
  color: #767676;
  text-align: left;
}
.cid-utouWGaDET .card-box {
  padding-top: 2rem;
}
.cid-utouWGaDET .card-wrapper {
  height: 100%;
}
.cid-utouWGaDET P {
  text-align: left;
}
.cid-utouWGaDET .card-title {
  text-align: left;
}
.cid-utouWHzoeB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utouWHzoeB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utouWHzoeB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utouWIPJpZ {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utouWIPJpZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utouWIPJpZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utouWIPJpZ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utouWIPJpZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utouWIPJpZ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utouWKrolQ {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utouWKrolQ .video-wrapper iframe {
  width: 100%;
}
.cid-utouWKrolQ .mbr-section-title,
.cid-utouWKrolQ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utouWKrolQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-utouWLIPKc {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utouWLIPKc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utouWLIPKc form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utouWLIPKc form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utouWLIPKc form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utouWLIPKc textarea {
  min-height: 10rem;
}
.cid-utouWLIPKc .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utouWMHov1 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utouWMHov1 .row {
    flex-direction: column-reverse;
  }
  .cid-utouWMHov1 .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utouWMHov1 .google-map {
  height: 100%;
  position: relative;
}
.cid-utouWMHov1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utouWMHov1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utouWMHov1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utouWMHov1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utouWMHov1 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utouWMHov1 .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utouWMHov1 .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utouWMHov1 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utouWMHov1 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utouWMHov1 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utouWMHov1 P {
  color: #353535;
}
.cid-utouWPH2UD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utouWPH2UD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utouWPH2UD .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utouWPH2UD .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utouWPH2UD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utouWPH2UD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utouWPH2UD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utouWPH2UD .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utouWPH2UD .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utouWPH2UD .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utouWPH2UD .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utouWPH2UD .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utouWPH2UD .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utouWPH2UD .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utouWPH2UD .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utouWPH2UD .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utouWR5ULQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utouWR5ULQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utouWR5ULQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utouWR5ULQ .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utouWR5ULQ .number {
  color: #f10303;
}
.cid-utouWR5ULQ .period {
  display: block;
}
.cid-utouWR5ULQ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utouWR5ULQ .period {
    font-size: 0.8rem;
  }
}
.cid-utouWR5ULQ .btn {
  height: 100%;
  margin: 0;
}
.cid-utouWR5ULQ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utouWR5ULQ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utouWR5ULQ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utouWR5ULQ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utouWR5ULQ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utq9HO1wk4 {
  z-index: 1000;
  width: 100%;
}
.cid-utq9HO1wk4 nav.navbar {
  position: fixed;
}
.cid-utq9HO1wk4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utq9HO1wk4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utq9HO1wk4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utq9HO1wk4 .dropdown-item:hover,
.cid-utq9HO1wk4 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utq9HO1wk4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utq9HO1wk4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utq9HO1wk4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utq9HO1wk4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utq9HO1wk4 .nav-link {
  position: relative;
}
.cid-utq9HO1wk4 .container {
  display: flex;
  margin: auto;
}
.cid-utq9HO1wk4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utq9HO1wk4 .dropdown-menu,
.cid-utq9HO1wk4 .navbar.opened {
  background: #47b5ed !important;
}
.cid-utq9HO1wk4 .nav-item:focus,
.cid-utq9HO1wk4 .nav-link:focus {
  outline: none;
}
.cid-utq9HO1wk4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utq9HO1wk4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utq9HO1wk4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utq9HO1wk4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utq9HO1wk4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utq9HO1wk4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utq9HO1wk4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utq9HO1wk4 .navbar.opened {
  transition: all 0.3s;
}
.cid-utq9HO1wk4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utq9HO1wk4 .navbar .navbar-logo img {
  width: auto;
}
.cid-utq9HO1wk4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utq9HO1wk4 .navbar.collapsed {
  justify-content: center;
}
.cid-utq9HO1wk4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utq9HO1wk4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utq9HO1wk4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utq9HO1wk4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utq9HO1wk4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utq9HO1wk4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utq9HO1wk4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utq9HO1wk4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utq9HO1wk4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utq9HO1wk4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utq9HO1wk4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utq9HO1wk4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utq9HO1wk4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utq9HO1wk4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utq9HO1wk4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utq9HO1wk4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utq9HO1wk4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utq9HO1wk4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utq9HO1wk4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utq9HO1wk4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utq9HO1wk4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-utq9HO1wk4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utq9HO1wk4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utq9HO1wk4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utq9HO1wk4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utq9HO1wk4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utq9HO1wk4 .dropdown-item.active,
.cid-utq9HO1wk4 .dropdown-item:active {
  background-color: transparent;
}
.cid-utq9HO1wk4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utq9HO1wk4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utq9HO1wk4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utq9HO1wk4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utq9HO1wk4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utq9HO1wk4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utq9HO1wk4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utq9HO1wk4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utq9HO1wk4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utq9HO1wk4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utq9HO1wk4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utq9HO1wk4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utq9HO1wk4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utq9HO1wk4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utq9HO1wk4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utq9HO1wk4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utq9HO1wk4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utq9HO1wk4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utq9HO1wk4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utq9HO1wk4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utq9HO1wk4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utq9HO1wk4 .navbar {
    height: 70px;
  }
  .cid-utq9HO1wk4 .navbar.opened {
    height: auto;
  }
  .cid-utq9HO1wk4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utq9HPlFn7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utq9HPlFn7 .mbr-section-title {
  color: #ffffff;
}
.cid-utq9HPlFn7 .mbr-text,
.cid-utq9HPlFn7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utq9HQtihC {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utq9HQtihC .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq9HQtihC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq9HQtihC .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utq9HQtihC .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utq9HQtihC .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utq9HRLGKS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utq9HRLGKS img,
.cid-utq9HRLGKS .item-img {
  width: 100%;
}
.cid-utq9HRLGKS .item:focus,
.cid-utq9HRLGKS span:focus {
  outline: none;
}
.cid-utq9HRLGKS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utq9HRLGKS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utq9HRLGKS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utq9HRLGKS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utq9HRLGKS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utq9HRLGKS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utq9HRLGKS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utq9HRLGKS .mbr-section-title {
  color: #232323;
}
.cid-utq9HRLGKS .mbr-text,
.cid-utq9HRLGKS .mbr-section-btn {
  text-align: left;
}
.cid-utq9HRLGKS .item-title {
  text-align: left;
}
.cid-utq9HRLGKS .item-subtitle {
  text-align: center;
}
.cid-utq9HT7XX9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utq9HT7XX9 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utq9HT7XX9 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utq9HTKTCj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utq9HTKTCj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utq9HTKTCj p {
  color: #767676;
  text-align: left;
}
.cid-utq9HTKTCj .card-box {
  padding-top: 2rem;
}
.cid-utq9HTKTCj .card-wrapper {
  height: 100%;
}
.cid-utq9HTKTCj P {
  text-align: left;
}
.cid-utq9HTKTCj .card-title {
  text-align: left;
}
.cid-utq9HUMDjh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utq9HUMDjh .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq9HUMDjh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq9HVuMgV {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utq9HVuMgV .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq9HVuMgV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq9HVuMgV .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utq9HVuMgV .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utq9HVuMgV .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utq9HWOKoG {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utq9HWOKoG .video-wrapper iframe {
  width: 100%;
}
.cid-utq9HWOKoG .mbr-section-title,
.cid-utq9HWOKoG .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utq9HWOKoG .text-wrapper {
    padding: 2rem;
  }
}
.cid-utq9HXBFt5 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utq9HXBFt5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utq9HXBFt5 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utq9HXBFt5 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utq9HXBFt5 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utq9HXBFt5 textarea {
  min-height: 10rem;
}
.cid-utq9HXBFt5 .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utq9HYlh7s {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utq9HYlh7s .row {
    flex-direction: column-reverse;
  }
  .cid-utq9HYlh7s .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utq9HYlh7s .google-map {
  height: 100%;
  position: relative;
}
.cid-utq9HYlh7s .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utq9HYlh7s .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utq9HYlh7s .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utq9HYlh7s .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utq9HYlh7s .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utq9HYlh7s .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utq9HYlh7s .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utq9HYlh7s .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utq9HYlh7s .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utq9HYlh7s .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utq9HYlh7s P {
  color: #353535;
}
.cid-utq9I0walq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utq9I0walq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utq9I0walq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utq9I0walq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utq9I0walq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utq9I0walq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utq9I0walq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utq9I0walq .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utq9I0walq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utq9I0walq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utq9I0walq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utq9I0walq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utq9I0walq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utq9I0walq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utq9I0walq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utq9I0walq .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utq9I1qy3s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utq9I1qy3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq9I1qy3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq9I1qy3s .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utq9I1qy3s .number {
  color: #f10303;
}
.cid-utq9I1qy3s .period {
  display: block;
}
.cid-utq9I1qy3s .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utq9I1qy3s .period {
    font-size: 0.8rem;
  }
}
.cid-utq9I1qy3s .btn {
  height: 100%;
  margin: 0;
}
.cid-utq9I1qy3s .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utq9I1qy3s .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utq9I1qy3s .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utq9I1qy3s .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utq9I1qy3s .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utqaGTfgIw {
  z-index: 1000;
  width: 100%;
}
.cid-utqaGTfgIw nav.navbar {
  position: fixed;
}
.cid-utqaGTfgIw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utqaGTfgIw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utqaGTfgIw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utqaGTfgIw .dropdown-item:hover,
.cid-utqaGTfgIw .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utqaGTfgIw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utqaGTfgIw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utqaGTfgIw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utqaGTfgIw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utqaGTfgIw .nav-link {
  position: relative;
}
.cid-utqaGTfgIw .container {
  display: flex;
  margin: auto;
}
.cid-utqaGTfgIw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utqaGTfgIw .dropdown-menu,
.cid-utqaGTfgIw .navbar.opened {
  background: #47b5ed !important;
}
.cid-utqaGTfgIw .nav-item:focus,
.cid-utqaGTfgIw .nav-link:focus {
  outline: none;
}
.cid-utqaGTfgIw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utqaGTfgIw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utqaGTfgIw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utqaGTfgIw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utqaGTfgIw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utqaGTfgIw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utqaGTfgIw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utqaGTfgIw .navbar.opened {
  transition: all 0.3s;
}
.cid-utqaGTfgIw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utqaGTfgIw .navbar .navbar-logo img {
  width: auto;
}
.cid-utqaGTfgIw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utqaGTfgIw .navbar.collapsed {
  justify-content: center;
}
.cid-utqaGTfgIw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utqaGTfgIw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utqaGTfgIw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utqaGTfgIw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utqaGTfgIw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utqaGTfgIw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utqaGTfgIw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utqaGTfgIw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utqaGTfgIw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utqaGTfgIw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utqaGTfgIw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utqaGTfgIw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utqaGTfgIw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utqaGTfgIw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utqaGTfgIw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utqaGTfgIw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utqaGTfgIw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utqaGTfgIw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utqaGTfgIw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utqaGTfgIw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utqaGTfgIw .navbar.navbar-short {
  min-height: 60px;
}
.cid-utqaGTfgIw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utqaGTfgIw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utqaGTfgIw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utqaGTfgIw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utqaGTfgIw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utqaGTfgIw .dropdown-item.active,
.cid-utqaGTfgIw .dropdown-item:active {
  background-color: transparent;
}
.cid-utqaGTfgIw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utqaGTfgIw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utqaGTfgIw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utqaGTfgIw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utqaGTfgIw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utqaGTfgIw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utqaGTfgIw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utqaGTfgIw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utqaGTfgIw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utqaGTfgIw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utqaGTfgIw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utqaGTfgIw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utqaGTfgIw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utqaGTfgIw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utqaGTfgIw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utqaGTfgIw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utqaGTfgIw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utqaGTfgIw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utqaGTfgIw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utqaGTfgIw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utqaGTfgIw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utqaGTfgIw .navbar {
    height: 70px;
  }
  .cid-utqaGTfgIw .navbar.opened {
    height: auto;
  }
  .cid-utqaGTfgIw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utqaGUVaSn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utqaGUVaSn .mbr-section-title {
  color: #ffffff;
}
.cid-utqaGUVaSn .mbr-text,
.cid-utqaGUVaSn .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utqaGWiqEp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utqaGWiqEp .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqaGWiqEp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqaGWiqEp .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utqaGWiqEp .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqaGWiqEp .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utqaGXS8zH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utqaGXS8zH img,
.cid-utqaGXS8zH .item-img {
  width: 100%;
}
.cid-utqaGXS8zH .item:focus,
.cid-utqaGXS8zH span:focus {
  outline: none;
}
.cid-utqaGXS8zH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utqaGXS8zH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utqaGXS8zH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utqaGXS8zH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utqaGXS8zH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utqaGXS8zH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utqaGXS8zH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utqaGXS8zH .mbr-section-title {
  color: #232323;
}
.cid-utqaGXS8zH .mbr-text,
.cid-utqaGXS8zH .mbr-section-btn {
  text-align: left;
}
.cid-utqaGXS8zH .item-title {
  text-align: left;
}
.cid-utqaGXS8zH .item-subtitle {
  text-align: center;
}
.cid-utqaGZkpe7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utqaGZkpe7 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utqaGZkpe7 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utqaGZXB6J {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utqaGZXB6J h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utqaGZXB6J p {
  color: #767676;
  text-align: left;
}
.cid-utqaGZXB6J .card-box {
  padding-top: 2rem;
}
.cid-utqaGZXB6J .card-wrapper {
  height: 100%;
}
.cid-utqaGZXB6J P {
  text-align: left;
}
.cid-utqaGZXB6J .card-title {
  text-align: left;
}
.cid-utqaH13UAd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utqaH13UAd .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqaH13UAd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqaH1TwDV {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utqaH1TwDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqaH1TwDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqaH1TwDV .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utqaH1TwDV .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqaH1TwDV .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utqaH3fNJT {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utqaH3fNJT .video-wrapper iframe {
  width: 100%;
}
.cid-utqaH3fNJT .mbr-section-title,
.cid-utqaH3fNJT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utqaH3fNJT .text-wrapper {
    padding: 2rem;
  }
}
.cid-utqaH4097Z {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utqaH4097Z .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utqaH4097Z form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utqaH4097Z form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utqaH4097Z form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utqaH4097Z textarea {
  min-height: 10rem;
}
.cid-utqaH4097Z .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utqaH4HQLv {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utqaH4HQLv .row {
    flex-direction: column-reverse;
  }
  .cid-utqaH4HQLv .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqaH4HQLv .google-map {
  height: 100%;
  position: relative;
}
.cid-utqaH4HQLv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utqaH4HQLv .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utqaH4HQLv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utqaH4HQLv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utqaH4HQLv .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utqaH4HQLv .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utqaH4HQLv .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utqaH4HQLv .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utqaH4HQLv .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utqaH4HQLv .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utqaH4HQLv P {
  color: #353535;
}
.cid-utqaH6K5yW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utqaH6K5yW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utqaH6K5yW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utqaH6K5yW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utqaH6K5yW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utqaH6K5yW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utqaH6K5yW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utqaH6K5yW .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utqaH6K5yW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utqaH6K5yW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utqaH6K5yW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utqaH6K5yW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utqaH6K5yW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utqaH6K5yW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utqaH6K5yW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utqaH6K5yW .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utqaH7Epu4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utqaH7Epu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqaH7Epu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqaH7Epu4 .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utqaH7Epu4 .number {
  color: #f10303;
}
.cid-utqaH7Epu4 .period {
  display: block;
}
.cid-utqaH7Epu4 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utqaH7Epu4 .period {
    font-size: 0.8rem;
  }
}
.cid-utqaH7Epu4 .btn {
  height: 100%;
  margin: 0;
}
.cid-utqaH7Epu4 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utqaH7Epu4 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utqaH7Epu4 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utqaH7Epu4 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utqaH7Epu4 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utqbqH5KRV {
  z-index: 1000;
  width: 100%;
}
.cid-utqbqH5KRV nav.navbar {
  position: fixed;
}
.cid-utqbqH5KRV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utqbqH5KRV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utqbqH5KRV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utqbqH5KRV .dropdown-item:hover,
.cid-utqbqH5KRV .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utqbqH5KRV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utqbqH5KRV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utqbqH5KRV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utqbqH5KRV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utqbqH5KRV .nav-link {
  position: relative;
}
.cid-utqbqH5KRV .container {
  display: flex;
  margin: auto;
}
.cid-utqbqH5KRV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utqbqH5KRV .dropdown-menu,
.cid-utqbqH5KRV .navbar.opened {
  background: #47b5ed !important;
}
.cid-utqbqH5KRV .nav-item:focus,
.cid-utqbqH5KRV .nav-link:focus {
  outline: none;
}
.cid-utqbqH5KRV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utqbqH5KRV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utqbqH5KRV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utqbqH5KRV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utqbqH5KRV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utqbqH5KRV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utqbqH5KRV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utqbqH5KRV .navbar.opened {
  transition: all 0.3s;
}
.cid-utqbqH5KRV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utqbqH5KRV .navbar .navbar-logo img {
  width: auto;
}
.cid-utqbqH5KRV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utqbqH5KRV .navbar.collapsed {
  justify-content: center;
}
.cid-utqbqH5KRV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utqbqH5KRV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utqbqH5KRV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utqbqH5KRV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utqbqH5KRV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utqbqH5KRV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utqbqH5KRV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utqbqH5KRV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utqbqH5KRV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utqbqH5KRV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utqbqH5KRV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utqbqH5KRV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utqbqH5KRV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utqbqH5KRV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utqbqH5KRV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utqbqH5KRV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utqbqH5KRV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utqbqH5KRV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utqbqH5KRV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utqbqH5KRV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utqbqH5KRV .navbar.navbar-short {
  min-height: 60px;
}
.cid-utqbqH5KRV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utqbqH5KRV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utqbqH5KRV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utqbqH5KRV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utqbqH5KRV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utqbqH5KRV .dropdown-item.active,
.cid-utqbqH5KRV .dropdown-item:active {
  background-color: transparent;
}
.cid-utqbqH5KRV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utqbqH5KRV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utqbqH5KRV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utqbqH5KRV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utqbqH5KRV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utqbqH5KRV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utqbqH5KRV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utqbqH5KRV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utqbqH5KRV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utqbqH5KRV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utqbqH5KRV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utqbqH5KRV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utqbqH5KRV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utqbqH5KRV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utqbqH5KRV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utqbqH5KRV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utqbqH5KRV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utqbqH5KRV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utqbqH5KRV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utqbqH5KRV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utqbqH5KRV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utqbqH5KRV .navbar {
    height: 70px;
  }
  .cid-utqbqH5KRV .navbar.opened {
    height: auto;
  }
  .cid-utqbqH5KRV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utqbqIl3tu {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utqbqIl3tu .mbr-section-title {
  color: #ffffff;
}
.cid-utqbqIl3tu .mbr-text,
.cid-utqbqIl3tu .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utqbqJjUvj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utqbqJjUvj .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqbqJjUvj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqbqJjUvj .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utqbqJjUvj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqbqJjUvj .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utqbqKDxPZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utqbqKDxPZ img,
.cid-utqbqKDxPZ .item-img {
  width: 100%;
}
.cid-utqbqKDxPZ .item:focus,
.cid-utqbqKDxPZ span:focus {
  outline: none;
}
.cid-utqbqKDxPZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utqbqKDxPZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utqbqKDxPZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utqbqKDxPZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utqbqKDxPZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utqbqKDxPZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utqbqKDxPZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utqbqKDxPZ .mbr-section-title {
  color: #232323;
}
.cid-utqbqKDxPZ .mbr-text,
.cid-utqbqKDxPZ .mbr-section-btn {
  text-align: left;
}
.cid-utqbqKDxPZ .item-title {
  text-align: left;
}
.cid-utqbqKDxPZ .item-subtitle {
  text-align: center;
}
.cid-utqbqLTNDo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utqbqLTNDo .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utqbqLTNDo .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utqbqMpB2O {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utqbqMpB2O h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utqbqMpB2O p {
  color: #767676;
  text-align: left;
}
.cid-utqbqMpB2O .card-box {
  padding-top: 2rem;
}
.cid-utqbqMpB2O .card-wrapper {
  height: 100%;
}
.cid-utqbqMpB2O P {
  text-align: left;
}
.cid-utqbqMpB2O .card-title {
  text-align: left;
}
.cid-utqbqNxVgY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utqbqNxVgY .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqbqNxVgY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqbqOe92M {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utqbqOe92M .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqbqOe92M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqbqOe92M .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utqbqOe92M .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqbqOe92M .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utqbqPkxjf {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utqbqPkxjf .video-wrapper iframe {
  width: 100%;
}
.cid-utqbqPkxjf .mbr-section-title,
.cid-utqbqPkxjf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utqbqPkxjf .text-wrapper {
    padding: 2rem;
  }
}
.cid-utqbqQ7BtA {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utqbqQ7BtA .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utqbqQ7BtA form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utqbqQ7BtA form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utqbqQ7BtA form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utqbqQ7BtA textarea {
  min-height: 10rem;
}
.cid-utqbqQ7BtA .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utqbqQRZ8Q {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utqbqQRZ8Q .row {
    flex-direction: column-reverse;
  }
  .cid-utqbqQRZ8Q .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqbqQRZ8Q .google-map {
  height: 100%;
  position: relative;
}
.cid-utqbqQRZ8Q .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utqbqQRZ8Q .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utqbqQRZ8Q .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utqbqQRZ8Q .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utqbqQRZ8Q .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utqbqQRZ8Q .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utqbqQRZ8Q .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utqbqQRZ8Q .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utqbqQRZ8Q .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utqbqQRZ8Q .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utqbqQRZ8Q P {
  color: #353535;
}
.cid-utqbqT8fIb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utqbqT8fIb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utqbqT8fIb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utqbqT8fIb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utqbqT8fIb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utqbqT8fIb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utqbqT8fIb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utqbqT8fIb .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utqbqT8fIb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utqbqT8fIb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utqbqT8fIb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utqbqT8fIb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utqbqT8fIb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utqbqT8fIb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utqbqT8fIb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utqbqT8fIb .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utqbqU1rOM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utqbqU1rOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqbqU1rOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqbqU1rOM .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utqbqU1rOM .number {
  color: #f10303;
}
.cid-utqbqU1rOM .period {
  display: block;
}
.cid-utqbqU1rOM .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utqbqU1rOM .period {
    font-size: 0.8rem;
  }
}
.cid-utqbqU1rOM .btn {
  height: 100%;
  margin: 0;
}
.cid-utqbqU1rOM .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utqbqU1rOM .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utqbqU1rOM .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utqbqU1rOM .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utqbqU1rOM .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utqc6hHZYb {
  z-index: 1000;
  width: 100%;
}
.cid-utqc6hHZYb nav.navbar {
  position: fixed;
}
.cid-utqc6hHZYb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utqc6hHZYb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utqc6hHZYb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utqc6hHZYb .dropdown-item:hover,
.cid-utqc6hHZYb .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utqc6hHZYb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utqc6hHZYb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utqc6hHZYb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utqc6hHZYb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utqc6hHZYb .nav-link {
  position: relative;
}
.cid-utqc6hHZYb .container {
  display: flex;
  margin: auto;
}
.cid-utqc6hHZYb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utqc6hHZYb .dropdown-menu,
.cid-utqc6hHZYb .navbar.opened {
  background: #47b5ed !important;
}
.cid-utqc6hHZYb .nav-item:focus,
.cid-utqc6hHZYb .nav-link:focus {
  outline: none;
}
.cid-utqc6hHZYb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utqc6hHZYb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utqc6hHZYb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utqc6hHZYb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utqc6hHZYb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utqc6hHZYb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utqc6hHZYb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utqc6hHZYb .navbar.opened {
  transition: all 0.3s;
}
.cid-utqc6hHZYb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utqc6hHZYb .navbar .navbar-logo img {
  width: auto;
}
.cid-utqc6hHZYb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utqc6hHZYb .navbar.collapsed {
  justify-content: center;
}
.cid-utqc6hHZYb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utqc6hHZYb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utqc6hHZYb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utqc6hHZYb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utqc6hHZYb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utqc6hHZYb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utqc6hHZYb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utqc6hHZYb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utqc6hHZYb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utqc6hHZYb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utqc6hHZYb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utqc6hHZYb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utqc6hHZYb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utqc6hHZYb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utqc6hHZYb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utqc6hHZYb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utqc6hHZYb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utqc6hHZYb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utqc6hHZYb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utqc6hHZYb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utqc6hHZYb .navbar.navbar-short {
  min-height: 60px;
}
.cid-utqc6hHZYb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utqc6hHZYb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utqc6hHZYb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utqc6hHZYb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utqc6hHZYb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utqc6hHZYb .dropdown-item.active,
.cid-utqc6hHZYb .dropdown-item:active {
  background-color: transparent;
}
.cid-utqc6hHZYb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utqc6hHZYb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utqc6hHZYb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utqc6hHZYb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utqc6hHZYb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utqc6hHZYb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utqc6hHZYb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utqc6hHZYb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utqc6hHZYb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utqc6hHZYb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utqc6hHZYb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utqc6hHZYb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utqc6hHZYb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utqc6hHZYb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utqc6hHZYb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utqc6hHZYb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utqc6hHZYb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utqc6hHZYb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utqc6hHZYb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utqc6hHZYb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utqc6hHZYb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utqc6hHZYb .navbar {
    height: 70px;
  }
  .cid-utqc6hHZYb .navbar.opened {
    height: auto;
  }
  .cid-utqc6hHZYb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utqc6jeSVK {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utqc6jeSVK .mbr-section-title {
  color: #ffffff;
}
.cid-utqc6jeSVK .mbr-text,
.cid-utqc6jeSVK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utqc6k67KJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utqc6k67KJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqc6k67KJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqc6k67KJ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utqc6k67KJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqc6k67KJ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utqc6lAP6m {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utqc6lAP6m img,
.cid-utqc6lAP6m .item-img {
  width: 100%;
}
.cid-utqc6lAP6m .item:focus,
.cid-utqc6lAP6m span:focus {
  outline: none;
}
.cid-utqc6lAP6m .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utqc6lAP6m .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utqc6lAP6m .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utqc6lAP6m .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utqc6lAP6m .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utqc6lAP6m .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utqc6lAP6m .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utqc6lAP6m .mbr-section-title {
  color: #232323;
}
.cid-utqc6lAP6m .mbr-text,
.cid-utqc6lAP6m .mbr-section-btn {
  text-align: left;
}
.cid-utqc6lAP6m .item-title {
  text-align: left;
}
.cid-utqc6lAP6m .item-subtitle {
  text-align: center;
}
.cid-utqc6n8UsY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utqc6n8UsY .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utqc6n8UsY .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utqc6nFQ2E {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utqc6nFQ2E h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utqc6nFQ2E p {
  color: #767676;
  text-align: left;
}
.cid-utqc6nFQ2E .card-box {
  padding-top: 2rem;
}
.cid-utqc6nFQ2E .card-wrapper {
  height: 100%;
}
.cid-utqc6nFQ2E P {
  text-align: left;
}
.cid-utqc6nFQ2E .card-title {
  text-align: left;
}
.cid-utqc6oIz1h {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utqc6oIz1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqc6oIz1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqc6pBOIo {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utqc6pBOIo .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqc6pBOIo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqc6pBOIo .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utqc6pBOIo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqc6pBOIo .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utqc6r4IDf {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utqc6r4IDf .video-wrapper iframe {
  width: 100%;
}
.cid-utqc6r4IDf .mbr-section-title,
.cid-utqc6r4IDf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utqc6r4IDf .text-wrapper {
    padding: 2rem;
  }
}
.cid-utqc6rYmaZ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utqc6rYmaZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utqc6rYmaZ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utqc6rYmaZ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utqc6rYmaZ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utqc6rYmaZ textarea {
  min-height: 10rem;
}
.cid-utqc6rYmaZ .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utqc6sIErK {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utqc6sIErK .row {
    flex-direction: column-reverse;
  }
  .cid-utqc6sIErK .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utqc6sIErK .google-map {
  height: 100%;
  position: relative;
}
.cid-utqc6sIErK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utqc6sIErK .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utqc6sIErK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utqc6sIErK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utqc6sIErK .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utqc6sIErK .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utqc6sIErK .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utqc6sIErK .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utqc6sIErK .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utqc6sIErK .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utqc6sIErK P {
  color: #353535;
}
.cid-utqc6uLS7J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utqc6uLS7J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utqc6uLS7J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utqc6uLS7J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utqc6uLS7J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utqc6uLS7J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utqc6uLS7J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utqc6uLS7J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utqc6uLS7J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utqc6uLS7J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utqc6uLS7J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utqc6uLS7J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utqc6uLS7J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utqc6uLS7J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utqc6uLS7J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utqc6uLS7J .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utqc6vGz3x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utqc6vGz3x .mbr-fallback-image.disabled {
  display: none;
}
.cid-utqc6vGz3x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utqc6vGz3x .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utqc6vGz3x .number {
  color: #f10303;
}
.cid-utqc6vGz3x .period {
  display: block;
}
.cid-utqc6vGz3x .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utqc6vGz3x .period {
    font-size: 0.8rem;
  }
}
.cid-utqc6vGz3x .btn {
  height: 100%;
  margin: 0;
}
.cid-utqc6vGz3x .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utqc6vGz3x .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utqc6vGz3x .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utqc6vGz3x .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utqc6vGz3x .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-utou0izaKa {
  z-index: 1000;
  width: 100%;
}
.cid-utou0izaKa nav.navbar {
  position: fixed;
}
.cid-utou0izaKa .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utou0izaKa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utou0izaKa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utou0izaKa .dropdown-item:hover,
.cid-utou0izaKa .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-utou0izaKa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utou0izaKa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utou0izaKa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utou0izaKa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utou0izaKa .nav-link {
  position: relative;
}
.cid-utou0izaKa .container {
  display: flex;
  margin: auto;
}
.cid-utou0izaKa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utou0izaKa .dropdown-menu,
.cid-utou0izaKa .navbar.opened {
  background: #47b5ed !important;
}
.cid-utou0izaKa .nav-item:focus,
.cid-utou0izaKa .nav-link:focus {
  outline: none;
}
.cid-utou0izaKa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utou0izaKa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utou0izaKa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utou0izaKa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utou0izaKa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utou0izaKa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utou0izaKa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-utou0izaKa .navbar.opened {
  transition: all 0.3s;
}
.cid-utou0izaKa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utou0izaKa .navbar .navbar-logo img {
  width: auto;
}
.cid-utou0izaKa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utou0izaKa .navbar.collapsed {
  justify-content: center;
}
.cid-utou0izaKa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utou0izaKa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utou0izaKa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-utou0izaKa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utou0izaKa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utou0izaKa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utou0izaKa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utou0izaKa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utou0izaKa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utou0izaKa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utou0izaKa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utou0izaKa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utou0izaKa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utou0izaKa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utou0izaKa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utou0izaKa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utou0izaKa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utou0izaKa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utou0izaKa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utou0izaKa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utou0izaKa .navbar.navbar-short {
  min-height: 60px;
}
.cid-utou0izaKa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utou0izaKa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utou0izaKa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utou0izaKa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utou0izaKa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utou0izaKa .dropdown-item.active,
.cid-utou0izaKa .dropdown-item:active {
  background-color: transparent;
}
.cid-utou0izaKa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utou0izaKa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utou0izaKa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utou0izaKa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-utou0izaKa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utou0izaKa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utou0izaKa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utou0izaKa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utou0izaKa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utou0izaKa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utou0izaKa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utou0izaKa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utou0izaKa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utou0izaKa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utou0izaKa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utou0izaKa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utou0izaKa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utou0izaKa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utou0izaKa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utou0izaKa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utou0izaKa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utou0izaKa .navbar {
    height: 70px;
  }
  .cid-utou0izaKa .navbar.opened {
    height: auto;
  }
  .cid-utou0izaKa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utou0ktcYC {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-utou0ktcYC .mbr-section-title {
  color: #ffffff;
}
.cid-utou0ktcYC .mbr-text,
.cid-utou0ktcYC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-utou0mc4xb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-utou0mc4xb .mbr-fallback-image.disabled {
  display: none;
}
.cid-utou0mc4xb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utou0mc4xb .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utou0mc4xb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utou0mc4xb .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utou0nYrLX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-utou0nYrLX img,
.cid-utou0nYrLX .item-img {
  width: 100%;
}
.cid-utou0nYrLX .item:focus,
.cid-utou0nYrLX span:focus {
  outline: none;
}
.cid-utou0nYrLX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utou0nYrLX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utou0nYrLX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-utou0nYrLX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utou0nYrLX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-utou0nYrLX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-utou0nYrLX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utou0nYrLX .mbr-section-title {
  color: #232323;
}
.cid-utou0nYrLX .mbr-text,
.cid-utou0nYrLX .mbr-section-btn {
  text-align: left;
}
.cid-utou0nYrLX .item-title {
  text-align: left;
}
.cid-utou0nYrLX .item-subtitle {
  text-align: center;
}
.cid-utou0pKAjw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-utou0pKAjw .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-utou0pKAjw .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-utou0qFXbT {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-utou0qFXbT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-utou0qFXbT p {
  color: #767676;
  text-align: left;
}
.cid-utou0qFXbT .card-box {
  padding-top: 2rem;
}
.cid-utou0qFXbT .card-wrapper {
  height: 100%;
}
.cid-utou0qFXbT P {
  text-align: left;
}
.cid-utou0qFXbT .card-title {
  text-align: left;
}
.cid-utou0s9rqw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utou0s9rqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-utou0s9rqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utou0txUCz {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utou0txUCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-utou0txUCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utou0txUCz .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-utou0txUCz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utou0txUCz .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-utou0vnUpp {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-utou0vnUpp .video-wrapper iframe {
  width: 100%;
}
.cid-utou0vnUpp .mbr-section-title,
.cid-utou0vnUpp .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utou0vnUpp .text-wrapper {
    padding: 2rem;
  }
}
.cid-utou0wtwXm {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utou0wtwXm .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utou0wtwXm form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utou0wtwXm form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utou0wtwXm form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utou0wtwXm textarea {
  min-height: 10rem;
}
.cid-utou0wtwXm .mbr-section-subtitle {
  color: #7a0921;
}
.cid-utou0xyaoB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-utou0xyaoB .row {
    flex-direction: column-reverse;
  }
  .cid-utou0xyaoB .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-utou0xyaoB .google-map {
  height: 100%;
  position: relative;
}
.cid-utou0xyaoB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utou0xyaoB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utou0xyaoB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utou0xyaoB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utou0xyaoB .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-utou0xyaoB .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-utou0xyaoB .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-utou0xyaoB .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utou0xyaoB .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-utou0xyaoB .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-utou0xyaoB P {
  color: #353535;
}
.cid-utou0Ajcdr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-utou0Ajcdr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-utou0Ajcdr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-utou0Ajcdr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-utou0Ajcdr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-utou0Ajcdr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-utou0Ajcdr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-utou0Ajcdr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-utou0Ajcdr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-utou0Ajcdr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-utou0Ajcdr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-utou0Ajcdr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-utou0Ajcdr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-utou0Ajcdr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-utou0Ajcdr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-utou0Ajcdr .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-utou0BwTnm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utou0BwTnm .mbr-fallback-image.disabled {
  display: none;
}
.cid-utou0BwTnm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utou0BwTnm .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-utou0BwTnm .number {
  color: #47b5ed;
}
.cid-utou0BwTnm .period {
  display: block;
}
.cid-utou0BwTnm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-utou0BwTnm .period {
    font-size: 0.8rem;
  }
}
.cid-utou0BwTnm .btn {
  height: 100%;
  margin: 0;
}
.cid-utou0BwTnm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-utou0BwTnm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-utou0BwTnm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-utou0BwTnm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-utou0BwTnm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uOjMyHVjMw {
  z-index: 1000;
  width: 100%;
}
.cid-uOjMyHVjMw nav.navbar {
  position: fixed;
}
.cid-uOjMyHVjMw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjMyHVjMw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOjMyHVjMw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOjMyHVjMw .dropdown-item:hover,
.cid-uOjMyHVjMw .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uOjMyHVjMw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOjMyHVjMw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOjMyHVjMw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOjMyHVjMw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOjMyHVjMw .nav-link {
  position: relative;
}
.cid-uOjMyHVjMw .container {
  display: flex;
  margin: auto;
}
.cid-uOjMyHVjMw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOjMyHVjMw .dropdown-menu,
.cid-uOjMyHVjMw .navbar.opened {
  background: #47b5ed !important;
}
.cid-uOjMyHVjMw .nav-item:focus,
.cid-uOjMyHVjMw .nav-link:focus {
  outline: none;
}
.cid-uOjMyHVjMw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOjMyHVjMw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOjMyHVjMw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOjMyHVjMw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjMyHVjMw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOjMyHVjMw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOjMyHVjMw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-uOjMyHVjMw .navbar.opened {
  transition: all 0.3s;
}
.cid-uOjMyHVjMw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOjMyHVjMw .navbar .navbar-logo img {
  width: auto;
}
.cid-uOjMyHVjMw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOjMyHVjMw .navbar.collapsed {
  justify-content: center;
}
.cid-uOjMyHVjMw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOjMyHVjMw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOjMyHVjMw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOjMyHVjMw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOjMyHVjMw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOjMyHVjMw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOjMyHVjMw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOjMyHVjMw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOjMyHVjMw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOjMyHVjMw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOjMyHVjMw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOjMyHVjMw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOjMyHVjMw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOjMyHVjMw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOjMyHVjMw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOjMyHVjMw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOjMyHVjMw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOjMyHVjMw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOjMyHVjMw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOjMyHVjMw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOjMyHVjMw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOjMyHVjMw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOjMyHVjMw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOjMyHVjMw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOjMyHVjMw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOjMyHVjMw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOjMyHVjMw .dropdown-item.active,
.cid-uOjMyHVjMw .dropdown-item:active {
  background-color: transparent;
}
.cid-uOjMyHVjMw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOjMyHVjMw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOjMyHVjMw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOjMyHVjMw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uOjMyHVjMw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOjMyHVjMw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOjMyHVjMw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOjMyHVjMw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOjMyHVjMw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOjMyHVjMw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOjMyHVjMw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOjMyHVjMw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjMyHVjMw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjMyHVjMw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOjMyHVjMw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjMyHVjMw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOjMyHVjMw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOjMyHVjMw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjMyHVjMw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOjMyHVjMw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOjMyHVjMw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOjMyHVjMw .navbar {
    height: 70px;
  }
  .cid-uOjMyHVjMw .navbar.opened {
    height: auto;
  }
  .cid-uOjMyHVjMw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOjMyIACU5 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-uOjMyIACU5 .mbr-section-title {
  color: #ffffff;
}
.cid-uOjMyIACU5 .mbr-text,
.cid-uOjMyIACU5 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOjMyJ1dF3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOjMyJ1dF3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjMyJ1dF3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjMyJ1dF3 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjMyJ1dF3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjMyJ1dF3 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjMyJBX0P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uOjMyJBX0P img,
.cid-uOjMyJBX0P .item-img {
  width: 100%;
}
.cid-uOjMyJBX0P .item:focus,
.cid-uOjMyJBX0P span:focus {
  outline: none;
}
.cid-uOjMyJBX0P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjMyJBX0P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjMyJBX0P .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjMyJBX0P .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjMyJBX0P .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjMyJBX0P .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjMyJBX0P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjMyJBX0P .mbr-section-title {
  color: #232323;
}
.cid-uOjMyJBX0P .mbr-text,
.cid-uOjMyJBX0P .mbr-section-btn {
  text-align: left;
}
.cid-uOjMyJBX0P .item-title {
  text-align: left;
}
.cid-uOjMyJBX0P .item-subtitle {
  text-align: center;
}
.cid-uOjMyKaSI3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-uOjMyKaSI3 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uOjMyKaSI3 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOjMyKnAR9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-uOjMyKnAR9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uOjMyKnAR9 p {
  color: #767676;
  text-align: left;
}
.cid-uOjMyKnAR9 .card-box {
  padding-top: 2rem;
}
.cid-uOjMyKnAR9 .card-wrapper {
  height: 100%;
}
.cid-uOjMyKnAR9 P {
  text-align: left;
}
.cid-uOjMyKnAR9 .card-title {
  text-align: left;
}
.cid-uOjMyKMTV2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjMyKMTV2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjMyKMTV2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjMyL94Vk {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjMyL94Vk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjMyL94Vk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjMyL94Vk .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjMyL94Vk .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjMyL94Vk .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjMyLEZhJ {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uOjMyLEZhJ .video-wrapper iframe {
  width: 100%;
}
.cid-uOjMyLEZhJ .mbr-section-title,
.cid-uOjMyLEZhJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOjMyLEZhJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjMyLYMDc {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOjMyLYMDc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOjMyLYMDc form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOjMyLYMDc form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOjMyLYMDc form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOjMyLYMDc textarea {
  min-height: 10rem;
}
.cid-uOjMyLYMDc .mbr-section-subtitle {
  color: #7a0921;
}
.cid-uOjMyMgxuE {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOjMyMgxuE .row {
    flex-direction: column-reverse;
  }
  .cid-uOjMyMgxuE .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjMyMgxuE .google-map {
  height: 100%;
  position: relative;
}
.cid-uOjMyMgxuE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOjMyMgxuE .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOjMyMgxuE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOjMyMgxuE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOjMyMgxuE .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOjMyMgxuE .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uOjMyMgxuE .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uOjMyMgxuE .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjMyMgxuE .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOjMyMgxuE .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uOjMyMgxuE P {
  color: #353535;
}
.cid-uOjMyN7hd3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-uOjMyN7hd3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOjMyN7hd3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOjMyN7hd3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOjMyN7hd3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOjMyN7hd3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOjMyN7hd3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOjMyN7hd3 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOjMyN7hd3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOjMyN7hd3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOjMyN7hd3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOjMyN7hd3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOjMyN7hd3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOjMyN7hd3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOjMyN7hd3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOjMyN7hd3 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uOjMyNu9KW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjMyNu9KW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjMyNu9KW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjMyNu9KW .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uOjMyNu9KW .number {
  color: #f10303;
}
.cid-uOjMyNu9KW .period {
  display: block;
}
.cid-uOjMyNu9KW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uOjMyNu9KW .period {
    font-size: 0.8rem;
  }
}
.cid-uOjMyNu9KW .btn {
  height: 100%;
  margin: 0;
}
.cid-uOjMyNu9KW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uOjMyNu9KW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uOjMyNu9KW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uOjMyNu9KW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uOjMyNu9KW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uOjO4q4CTg {
  z-index: 1000;
  width: 100%;
}
.cid-uOjO4q4CTg nav.navbar {
  position: fixed;
}
.cid-uOjO4q4CTg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjO4q4CTg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOjO4q4CTg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOjO4q4CTg .dropdown-item:hover,
.cid-uOjO4q4CTg .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uOjO4q4CTg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOjO4q4CTg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOjO4q4CTg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOjO4q4CTg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOjO4q4CTg .nav-link {
  position: relative;
}
.cid-uOjO4q4CTg .container {
  display: flex;
  margin: auto;
}
.cid-uOjO4q4CTg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOjO4q4CTg .dropdown-menu,
.cid-uOjO4q4CTg .navbar.opened {
  background: #47b5ed !important;
}
.cid-uOjO4q4CTg .nav-item:focus,
.cid-uOjO4q4CTg .nav-link:focus {
  outline: none;
}
.cid-uOjO4q4CTg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOjO4q4CTg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOjO4q4CTg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOjO4q4CTg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjO4q4CTg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOjO4q4CTg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOjO4q4CTg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-uOjO4q4CTg .navbar.opened {
  transition: all 0.3s;
}
.cid-uOjO4q4CTg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOjO4q4CTg .navbar .navbar-logo img {
  width: auto;
}
.cid-uOjO4q4CTg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOjO4q4CTg .navbar.collapsed {
  justify-content: center;
}
.cid-uOjO4q4CTg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOjO4q4CTg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOjO4q4CTg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOjO4q4CTg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOjO4q4CTg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOjO4q4CTg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOjO4q4CTg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOjO4q4CTg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOjO4q4CTg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOjO4q4CTg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOjO4q4CTg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOjO4q4CTg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOjO4q4CTg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOjO4q4CTg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOjO4q4CTg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOjO4q4CTg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOjO4q4CTg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOjO4q4CTg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOjO4q4CTg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOjO4q4CTg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOjO4q4CTg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOjO4q4CTg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOjO4q4CTg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOjO4q4CTg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOjO4q4CTg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOjO4q4CTg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOjO4q4CTg .dropdown-item.active,
.cid-uOjO4q4CTg .dropdown-item:active {
  background-color: transparent;
}
.cid-uOjO4q4CTg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOjO4q4CTg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOjO4q4CTg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOjO4q4CTg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uOjO4q4CTg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOjO4q4CTg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOjO4q4CTg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOjO4q4CTg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOjO4q4CTg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOjO4q4CTg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOjO4q4CTg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOjO4q4CTg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjO4q4CTg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjO4q4CTg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOjO4q4CTg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjO4q4CTg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOjO4q4CTg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOjO4q4CTg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjO4q4CTg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOjO4q4CTg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOjO4q4CTg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOjO4q4CTg .navbar {
    height: 70px;
  }
  .cid-uOjO4q4CTg .navbar.opened {
    height: auto;
  }
  .cid-uOjO4q4CTg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOjO4r01Oj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-uOjO4r01Oj .mbr-section-title {
  color: #ffffff;
}
.cid-uOjO4r01Oj .mbr-text,
.cid-uOjO4r01Oj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOjO4rG5PZ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOjO4rG5PZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjO4rG5PZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjO4rG5PZ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjO4rG5PZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjO4rG5PZ .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjO4staEI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uOjO4staEI img,
.cid-uOjO4staEI .item-img {
  width: 100%;
}
.cid-uOjO4staEI .item:focus,
.cid-uOjO4staEI span:focus {
  outline: none;
}
.cid-uOjO4staEI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjO4staEI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjO4staEI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjO4staEI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjO4staEI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjO4staEI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjO4staEI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjO4staEI .mbr-section-title {
  color: #232323;
}
.cid-uOjO4staEI .mbr-text,
.cid-uOjO4staEI .mbr-section-btn {
  text-align: left;
}
.cid-uOjO4staEI .item-title {
  text-align: left;
}
.cid-uOjO4staEI .item-subtitle {
  text-align: center;
}
.cid-uOjO4tsxsg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-uOjO4tsxsg .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uOjO4tsxsg .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOjO4tH5If {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-uOjO4tH5If h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uOjO4tH5If p {
  color: #767676;
  text-align: left;
}
.cid-uOjO4tH5If .card-box {
  padding-top: 2rem;
}
.cid-uOjO4tH5If .card-wrapper {
  height: 100%;
}
.cid-uOjO4tH5If P {
  text-align: left;
}
.cid-uOjO4tH5If .card-title {
  text-align: left;
}
.cid-uOjO4u8wRU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjO4u8wRU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjO4u8wRU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjO4utn6r {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjO4utn6r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjO4utn6r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjO4utn6r .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjO4utn6r .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjO4utn6r .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjO4uYf0q {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uOjO4uYf0q .video-wrapper iframe {
  width: 100%;
}
.cid-uOjO4uYf0q .mbr-section-title,
.cid-uOjO4uYf0q .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOjO4uYf0q .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjO4vkP9T {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOjO4vkP9T .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOjO4vkP9T form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOjO4vkP9T form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOjO4vkP9T form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOjO4vkP9T textarea {
  min-height: 10rem;
}
.cid-uOjO4vkP9T .mbr-section-subtitle {
  color: #7a0921;
}
.cid-uOjO4vI6VB {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOjO4vI6VB .row {
    flex-direction: column-reverse;
  }
  .cid-uOjO4vI6VB .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjO4vI6VB .google-map {
  height: 100%;
  position: relative;
}
.cid-uOjO4vI6VB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOjO4vI6VB .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOjO4vI6VB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOjO4vI6VB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOjO4vI6VB .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOjO4vI6VB .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uOjO4vI6VB .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uOjO4vI6VB .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjO4vI6VB .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOjO4vI6VB .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uOjO4vI6VB P {
  color: #353535;
}
.cid-uOjO4wAxAK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-uOjO4wAxAK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOjO4wAxAK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOjO4wAxAK .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOjO4wAxAK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOjO4wAxAK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOjO4wAxAK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOjO4wAxAK .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOjO4wAxAK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOjO4wAxAK .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOjO4wAxAK .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOjO4wAxAK .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOjO4wAxAK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOjO4wAxAK .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOjO4wAxAK .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOjO4wAxAK .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uOjO4wZkZO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjO4wZkZO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjO4wZkZO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjO4wZkZO .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uOjO4wZkZO .number {
  color: #f10303;
}
.cid-uOjO4wZkZO .period {
  display: block;
}
.cid-uOjO4wZkZO .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uOjO4wZkZO .period {
    font-size: 0.8rem;
  }
}
.cid-uOjO4wZkZO .btn {
  height: 100%;
  margin: 0;
}
.cid-uOjO4wZkZO .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uOjO4wZkZO .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uOjO4wZkZO .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uOjO4wZkZO .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uOjO4wZkZO .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uOjPl63eGk {
  z-index: 1000;
  width: 100%;
}
.cid-uOjPl63eGk nav.navbar {
  position: fixed;
}
.cid-uOjPl63eGk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjPl63eGk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOjPl63eGk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOjPl63eGk .dropdown-item:hover,
.cid-uOjPl63eGk .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uOjPl63eGk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOjPl63eGk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOjPl63eGk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOjPl63eGk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOjPl63eGk .nav-link {
  position: relative;
}
.cid-uOjPl63eGk .container {
  display: flex;
  margin: auto;
}
.cid-uOjPl63eGk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOjPl63eGk .dropdown-menu,
.cid-uOjPl63eGk .navbar.opened {
  background: #47b5ed !important;
}
.cid-uOjPl63eGk .nav-item:focus,
.cid-uOjPl63eGk .nav-link:focus {
  outline: none;
}
.cid-uOjPl63eGk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOjPl63eGk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOjPl63eGk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOjPl63eGk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjPl63eGk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOjPl63eGk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOjPl63eGk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-uOjPl63eGk .navbar.opened {
  transition: all 0.3s;
}
.cid-uOjPl63eGk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOjPl63eGk .navbar .navbar-logo img {
  width: auto;
}
.cid-uOjPl63eGk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOjPl63eGk .navbar.collapsed {
  justify-content: center;
}
.cid-uOjPl63eGk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOjPl63eGk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOjPl63eGk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOjPl63eGk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOjPl63eGk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOjPl63eGk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOjPl63eGk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOjPl63eGk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOjPl63eGk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOjPl63eGk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOjPl63eGk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOjPl63eGk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOjPl63eGk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOjPl63eGk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOjPl63eGk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOjPl63eGk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOjPl63eGk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOjPl63eGk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOjPl63eGk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOjPl63eGk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOjPl63eGk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOjPl63eGk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOjPl63eGk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOjPl63eGk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOjPl63eGk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOjPl63eGk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOjPl63eGk .dropdown-item.active,
.cid-uOjPl63eGk .dropdown-item:active {
  background-color: transparent;
}
.cid-uOjPl63eGk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOjPl63eGk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOjPl63eGk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOjPl63eGk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uOjPl63eGk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOjPl63eGk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOjPl63eGk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOjPl63eGk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOjPl63eGk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOjPl63eGk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOjPl63eGk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOjPl63eGk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjPl63eGk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjPl63eGk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOjPl63eGk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjPl63eGk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOjPl63eGk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOjPl63eGk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjPl63eGk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOjPl63eGk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOjPl63eGk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOjPl63eGk .navbar {
    height: 70px;
  }
  .cid-uOjPl63eGk .navbar.opened {
    height: auto;
  }
  .cid-uOjPl63eGk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOjPl6Iqqv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-uOjPl6Iqqv .mbr-section-title {
  color: #ffffff;
}
.cid-uOjPl6Iqqv .mbr-text,
.cid-uOjPl6Iqqv .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOjPl7hfH2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOjPl7hfH2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPl7hfH2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjPl7hfH2 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjPl7hfH2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjPl7hfH2 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjPl7M0U3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uOjPl7M0U3 img,
.cid-uOjPl7M0U3 .item-img {
  width: 100%;
}
.cid-uOjPl7M0U3 .item:focus,
.cid-uOjPl7M0U3 span:focus {
  outline: none;
}
.cid-uOjPl7M0U3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjPl7M0U3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjPl7M0U3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjPl7M0U3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjPl7M0U3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjPl7M0U3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjPl7M0U3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjPl7M0U3 .mbr-section-title {
  color: #232323;
}
.cid-uOjPl7M0U3 .mbr-text,
.cid-uOjPl7M0U3 .mbr-section-btn {
  text-align: left;
}
.cid-uOjPl7M0U3 .item-title {
  text-align: left;
}
.cid-uOjPl7M0U3 .item-subtitle {
  text-align: center;
}
.cid-uOjPl8lvm3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-uOjPl8lvm3 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uOjPl8lvm3 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOjPl8AZSo {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-uOjPl8AZSo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uOjPl8AZSo p {
  color: #767676;
  text-align: left;
}
.cid-uOjPl8AZSo .card-box {
  padding-top: 2rem;
}
.cid-uOjPl8AZSo .card-wrapper {
  height: 100%;
}
.cid-uOjPl8AZSo P {
  text-align: left;
}
.cid-uOjPl8AZSo .card-title {
  text-align: left;
}
.cid-uOjPl92W7Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjPl92W7Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPl92W7Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjPl9s4EM {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjPl9s4EM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPl9s4EM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjPl9s4EM .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjPl9s4EM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjPl9s4EM .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjPl9WSYT {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uOjPl9WSYT .video-wrapper iframe {
  width: 100%;
}
.cid-uOjPl9WSYT .mbr-section-title,
.cid-uOjPl9WSYT .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOjPl9WSYT .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjPlaiKkK {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOjPlaiKkK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOjPlaiKkK form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOjPlaiKkK form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOjPlaiKkK form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOjPlaiKkK textarea {
  min-height: 10rem;
}
.cid-uOjPlaiKkK .mbr-section-subtitle {
  color: #7a0921;
}
.cid-uOjPlaCI7y {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOjPlaCI7y .row {
    flex-direction: column-reverse;
  }
  .cid-uOjPlaCI7y .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjPlaCI7y .google-map {
  height: 100%;
  position: relative;
}
.cid-uOjPlaCI7y .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOjPlaCI7y .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOjPlaCI7y .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOjPlaCI7y .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOjPlaCI7y .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOjPlaCI7y .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uOjPlaCI7y .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uOjPlaCI7y .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjPlaCI7y .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOjPlaCI7y .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uOjPlaCI7y P {
  color: #353535;
}
.cid-uOjPlbuQYb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-uOjPlbuQYb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOjPlbuQYb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOjPlbuQYb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOjPlbuQYb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOjPlbuQYb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOjPlbuQYb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOjPlbuQYb .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOjPlbuQYb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOjPlbuQYb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOjPlbuQYb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOjPlbuQYb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOjPlbuQYb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOjPlbuQYb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOjPlbuQYb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOjPlbuQYb .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uOjPlbXtq6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjPlbXtq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjPlbXtq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjPlbXtq6 .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uOjPlbXtq6 .number {
  color: #f10303;
}
.cid-uOjPlbXtq6 .period {
  display: block;
}
.cid-uOjPlbXtq6 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uOjPlbXtq6 .period {
    font-size: 0.8rem;
  }
}
.cid-uOjPlbXtq6 .btn {
  height: 100%;
  margin: 0;
}
.cid-uOjPlbXtq6 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uOjPlbXtq6 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uOjPlbXtq6 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uOjPlbXtq6 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uOjPlbXtq6 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uOjQ6f7iOd {
  z-index: 1000;
  width: 100%;
}
.cid-uOjQ6f7iOd nav.navbar {
  position: fixed;
}
.cid-uOjQ6f7iOd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjQ6f7iOd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOjQ6f7iOd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOjQ6f7iOd .dropdown-item:hover,
.cid-uOjQ6f7iOd .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uOjQ6f7iOd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOjQ6f7iOd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOjQ6f7iOd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOjQ6f7iOd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOjQ6f7iOd .nav-link {
  position: relative;
}
.cid-uOjQ6f7iOd .container {
  display: flex;
  margin: auto;
}
.cid-uOjQ6f7iOd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOjQ6f7iOd .dropdown-menu,
.cid-uOjQ6f7iOd .navbar.opened {
  background: #47b5ed !important;
}
.cid-uOjQ6f7iOd .nav-item:focus,
.cid-uOjQ6f7iOd .nav-link:focus {
  outline: none;
}
.cid-uOjQ6f7iOd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOjQ6f7iOd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOjQ6f7iOd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOjQ6f7iOd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjQ6f7iOd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOjQ6f7iOd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOjQ6f7iOd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-uOjQ6f7iOd .navbar.opened {
  transition: all 0.3s;
}
.cid-uOjQ6f7iOd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOjQ6f7iOd .navbar .navbar-logo img {
  width: auto;
}
.cid-uOjQ6f7iOd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOjQ6f7iOd .navbar.collapsed {
  justify-content: center;
}
.cid-uOjQ6f7iOd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOjQ6f7iOd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOjQ6f7iOd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOjQ6f7iOd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOjQ6f7iOd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOjQ6f7iOd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOjQ6f7iOd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOjQ6f7iOd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOjQ6f7iOd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOjQ6f7iOd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOjQ6f7iOd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOjQ6f7iOd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOjQ6f7iOd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOjQ6f7iOd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOjQ6f7iOd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOjQ6f7iOd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOjQ6f7iOd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOjQ6f7iOd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOjQ6f7iOd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOjQ6f7iOd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOjQ6f7iOd .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOjQ6f7iOd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOjQ6f7iOd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOjQ6f7iOd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOjQ6f7iOd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOjQ6f7iOd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOjQ6f7iOd .dropdown-item.active,
.cid-uOjQ6f7iOd .dropdown-item:active {
  background-color: transparent;
}
.cid-uOjQ6f7iOd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOjQ6f7iOd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOjQ6f7iOd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOjQ6f7iOd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uOjQ6f7iOd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOjQ6f7iOd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOjQ6f7iOd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOjQ6f7iOd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOjQ6f7iOd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOjQ6f7iOd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOjQ6f7iOd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOjQ6f7iOd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjQ6f7iOd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjQ6f7iOd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOjQ6f7iOd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjQ6f7iOd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOjQ6f7iOd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOjQ6f7iOd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjQ6f7iOd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOjQ6f7iOd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOjQ6f7iOd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOjQ6f7iOd .navbar {
    height: 70px;
  }
  .cid-uOjQ6f7iOd .navbar.opened {
    height: auto;
  }
  .cid-uOjQ6f7iOd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOjQ6gdsjW {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-uOjQ6gdsjW .mbr-section-title {
  color: #ffffff;
}
.cid-uOjQ6gdsjW .mbr-text,
.cid-uOjQ6gdsjW .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOjQ6gT0zb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOjQ6gT0zb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQ6gT0zb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQ6gT0zb .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjQ6gT0zb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjQ6gT0zb .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjQ6hIaQm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uOjQ6hIaQm img,
.cid-uOjQ6hIaQm .item-img {
  width: 100%;
}
.cid-uOjQ6hIaQm .item:focus,
.cid-uOjQ6hIaQm span:focus {
  outline: none;
}
.cid-uOjQ6hIaQm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjQ6hIaQm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjQ6hIaQm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjQ6hIaQm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjQ6hIaQm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjQ6hIaQm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjQ6hIaQm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjQ6hIaQm .mbr-section-title {
  color: #232323;
}
.cid-uOjQ6hIaQm .mbr-text,
.cid-uOjQ6hIaQm .mbr-section-btn {
  text-align: left;
}
.cid-uOjQ6hIaQm .item-title {
  text-align: left;
}
.cid-uOjQ6hIaQm .item-subtitle {
  text-align: center;
}
.cid-uOjQ6iWn7N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-uOjQ6iWn7N .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uOjQ6iWn7N .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOjQ6jhI0o {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-uOjQ6jhI0o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uOjQ6jhI0o p {
  color: #767676;
  text-align: left;
}
.cid-uOjQ6jhI0o .card-box {
  padding-top: 2rem;
}
.cid-uOjQ6jhI0o .card-wrapper {
  height: 100%;
}
.cid-uOjQ6jhI0o P {
  text-align: left;
}
.cid-uOjQ6jhI0o .card-title {
  text-align: left;
}
.cid-uOjQ6jS7bP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjQ6jS7bP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQ6jS7bP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQ6kex0p {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjQ6kex0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQ6kex0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQ6kex0p .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjQ6kex0p .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjQ6kex0p .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjQ6kJ9lm {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uOjQ6kJ9lm .video-wrapper iframe {
  width: 100%;
}
.cid-uOjQ6kJ9lm .mbr-section-title,
.cid-uOjQ6kJ9lm .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOjQ6kJ9lm .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjQ6l4dv8 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOjQ6l4dv8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOjQ6l4dv8 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOjQ6l4dv8 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOjQ6l4dv8 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOjQ6l4dv8 textarea {
  min-height: 10rem;
}
.cid-uOjQ6l4dv8 .mbr-section-subtitle {
  color: #7a0921;
}
.cid-uOjQ6lpu7S {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOjQ6lpu7S .row {
    flex-direction: column-reverse;
  }
  .cid-uOjQ6lpu7S .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjQ6lpu7S .google-map {
  height: 100%;
  position: relative;
}
.cid-uOjQ6lpu7S .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOjQ6lpu7S .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOjQ6lpu7S .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOjQ6lpu7S .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOjQ6lpu7S .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOjQ6lpu7S .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uOjQ6lpu7S .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uOjQ6lpu7S .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjQ6lpu7S .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOjQ6lpu7S .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uOjQ6lpu7S P {
  color: #353535;
}
.cid-uOjQ6mm7jn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-uOjQ6mm7jn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOjQ6mm7jn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOjQ6mm7jn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOjQ6mm7jn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOjQ6mm7jn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOjQ6mm7jn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOjQ6mm7jn .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOjQ6mm7jn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOjQ6mm7jn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOjQ6mm7jn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOjQ6mm7jn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOjQ6mm7jn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOjQ6mm7jn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOjQ6mm7jn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOjQ6mm7jn .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uOjQ6mNKEV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjQ6mNKEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQ6mNKEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQ6mNKEV .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uOjQ6mNKEV .number {
  color: #f10303;
}
.cid-uOjQ6mNKEV .period {
  display: block;
}
.cid-uOjQ6mNKEV .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uOjQ6mNKEV .period {
    font-size: 0.8rem;
  }
}
.cid-uOjQ6mNKEV .btn {
  height: 100%;
  margin: 0;
}
.cid-uOjQ6mNKEV .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uOjQ6mNKEV .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uOjQ6mNKEV .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uOjQ6mNKEV .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uOjQ6mNKEV .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uOjQN7ujKA {
  z-index: 1000;
  width: 100%;
}
.cid-uOjQN7ujKA nav.navbar {
  position: fixed;
}
.cid-uOjQN7ujKA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjQN7ujKA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOjQN7ujKA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOjQN7ujKA .dropdown-item:hover,
.cid-uOjQN7ujKA .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uOjQN7ujKA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOjQN7ujKA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOjQN7ujKA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOjQN7ujKA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOjQN7ujKA .nav-link {
  position: relative;
}
.cid-uOjQN7ujKA .container {
  display: flex;
  margin: auto;
}
.cid-uOjQN7ujKA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOjQN7ujKA .dropdown-menu,
.cid-uOjQN7ujKA .navbar.opened {
  background: #47b5ed !important;
}
.cid-uOjQN7ujKA .nav-item:focus,
.cid-uOjQN7ujKA .nav-link:focus {
  outline: none;
}
.cid-uOjQN7ujKA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOjQN7ujKA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOjQN7ujKA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOjQN7ujKA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjQN7ujKA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOjQN7ujKA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOjQN7ujKA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(71, 181, 237, 0);
}
.cid-uOjQN7ujKA .navbar.opened {
  transition: all 0.3s;
}
.cid-uOjQN7ujKA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOjQN7ujKA .navbar .navbar-logo img {
  width: auto;
}
.cid-uOjQN7ujKA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOjQN7ujKA .navbar.collapsed {
  justify-content: center;
}
.cid-uOjQN7ujKA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOjQN7ujKA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOjQN7ujKA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOjQN7ujKA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOjQN7ujKA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOjQN7ujKA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOjQN7ujKA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOjQN7ujKA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOjQN7ujKA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOjQN7ujKA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOjQN7ujKA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOjQN7ujKA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOjQN7ujKA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOjQN7ujKA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOjQN7ujKA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOjQN7ujKA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOjQN7ujKA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOjQN7ujKA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOjQN7ujKA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOjQN7ujKA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOjQN7ujKA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOjQN7ujKA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOjQN7ujKA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOjQN7ujKA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOjQN7ujKA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOjQN7ujKA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOjQN7ujKA .dropdown-item.active,
.cid-uOjQN7ujKA .dropdown-item:active {
  background-color: transparent;
}
.cid-uOjQN7ujKA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOjQN7ujKA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOjQN7ujKA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOjQN7ujKA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uOjQN7ujKA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOjQN7ujKA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOjQN7ujKA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOjQN7ujKA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOjQN7ujKA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOjQN7ujKA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOjQN7ujKA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOjQN7ujKA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjQN7ujKA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjQN7ujKA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOjQN7ujKA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjQN7ujKA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOjQN7ujKA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOjQN7ujKA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjQN7ujKA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOjQN7ujKA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOjQN7ujKA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOjQN7ujKA .navbar {
    height: 70px;
  }
  .cid-uOjQN7ujKA .navbar.opened {
    height: auto;
  }
  .cid-uOjQN7ujKA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOjQN8CaJg {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-uOjQN8CaJg .mbr-section-title {
  color: #ffffff;
}
.cid-uOjQN8CaJg .mbr-text,
.cid-uOjQN8CaJg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOjQN9emxr {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOjQN9emxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQN9emxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQN9emxr .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjQN9emxr .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjQN9emxr .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjQN9WNsE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uOjQN9WNsE img,
.cid-uOjQN9WNsE .item-img {
  width: 100%;
}
.cid-uOjQN9WNsE .item:focus,
.cid-uOjQN9WNsE span:focus {
  outline: none;
}
.cid-uOjQN9WNsE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjQN9WNsE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjQN9WNsE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjQN9WNsE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjQN9WNsE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjQN9WNsE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjQN9WNsE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjQN9WNsE .mbr-section-title {
  color: #232323;
}
.cid-uOjQN9WNsE .mbr-text,
.cid-uOjQN9WNsE .mbr-section-btn {
  text-align: left;
}
.cid-uOjQN9WNsE .item-title {
  text-align: left;
}
.cid-uOjQN9WNsE .item-subtitle {
  text-align: center;
}
.cid-uOjQNaO6nJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-uOjQNaO6nJ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uOjQNaO6nJ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOjQNbaSdF {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-uOjQNbaSdF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uOjQNbaSdF p {
  color: #767676;
  text-align: left;
}
.cid-uOjQNbaSdF .card-box {
  padding-top: 2rem;
}
.cid-uOjQNbaSdF .card-wrapper {
  height: 100%;
}
.cid-uOjQNbaSdF P {
  text-align: left;
}
.cid-uOjQNbaSdF .card-title {
  text-align: left;
}
.cid-uOjQNc6Zu2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjQNc6Zu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQNc6Zu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQNcssnT {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjQNcssnT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQNcssnT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQNcssnT .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjQNcssnT .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjQNcssnT .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjQNcWTLx {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uOjQNcWTLx .video-wrapper iframe {
  width: 100%;
}
.cid-uOjQNcWTLx .mbr-section-title,
.cid-uOjQNcWTLx .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOjQNcWTLx .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjQNdgxoZ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOjQNdgxoZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOjQNdgxoZ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOjQNdgxoZ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOjQNdgxoZ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOjQNdgxoZ textarea {
  min-height: 10rem;
}
.cid-uOjQNdgxoZ .mbr-section-subtitle {
  color: #7a0921;
}
.cid-uOjQNdAq6S {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOjQNdAq6S .row {
    flex-direction: column-reverse;
  }
  .cid-uOjQNdAq6S .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjQNdAq6S .google-map {
  height: 100%;
  position: relative;
}
.cid-uOjQNdAq6S .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOjQNdAq6S .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOjQNdAq6S .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOjQNdAq6S .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOjQNdAq6S .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOjQNdAq6S .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uOjQNdAq6S .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uOjQNdAq6S .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjQNdAq6S .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOjQNdAq6S .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uOjQNdAq6S P {
  color: #353535;
}
.cid-uOjQNetMrg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-uOjQNetMrg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOjQNetMrg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOjQNetMrg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOjQNetMrg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOjQNetMrg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOjQNetMrg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOjQNetMrg .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOjQNetMrg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOjQNetMrg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOjQNetMrg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOjQNetMrg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOjQNetMrg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOjQNetMrg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOjQNetMrg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOjQNetMrg .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uOjQNeVEoL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjQNeVEoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjQNeVEoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjQNeVEoL .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uOjQNeVEoL .number {
  color: #f10303;
}
.cid-uOjQNeVEoL .period {
  display: block;
}
.cid-uOjQNeVEoL .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uOjQNeVEoL .period {
    font-size: 0.8rem;
  }
}
.cid-uOjQNeVEoL .btn {
  height: 100%;
  margin: 0;
}
.cid-uOjQNeVEoL .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uOjQNeVEoL .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uOjQNeVEoL .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uOjQNeVEoL .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uOjQNeVEoL .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
.cid-uOjV8F8yQP {
  z-index: 1000;
  width: 100%;
}
.cid-uOjV8F8yQP nav.navbar {
  position: fixed;
}
.cid-uOjV8F8yQP .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjV8F8yQP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOjV8F8yQP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOjV8F8yQP .dropdown-item:hover,
.cid-uOjV8F8yQP .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uOjV8F8yQP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOjV8F8yQP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOjV8F8yQP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uOjV8F8yQP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOjV8F8yQP .nav-link {
  position: relative;
}
.cid-uOjV8F8yQP .container {
  display: flex;
  margin: auto;
}
.cid-uOjV8F8yQP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOjV8F8yQP .dropdown-menu,
.cid-uOjV8F8yQP .navbar.opened {
  background: #094e58 !important;
}
.cid-uOjV8F8yQP .nav-item:focus,
.cid-uOjV8F8yQP .nav-link:focus {
  outline: none;
}
.cid-uOjV8F8yQP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOjV8F8yQP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOjV8F8yQP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOjV8F8yQP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOjV8F8yQP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOjV8F8yQP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOjV8F8yQP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(9, 78, 88, 0);
}
.cid-uOjV8F8yQP .navbar.opened {
  transition: all 0.3s;
}
.cid-uOjV8F8yQP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOjV8F8yQP .navbar .navbar-logo img {
  width: auto;
}
.cid-uOjV8F8yQP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOjV8F8yQP .navbar.collapsed {
  justify-content: center;
}
.cid-uOjV8F8yQP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOjV8F8yQP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOjV8F8yQP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uOjV8F8yQP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOjV8F8yQP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOjV8F8yQP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOjV8F8yQP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOjV8F8yQP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOjV8F8yQP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOjV8F8yQP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOjV8F8yQP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOjV8F8yQP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOjV8F8yQP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOjV8F8yQP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOjV8F8yQP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOjV8F8yQP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOjV8F8yQP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOjV8F8yQP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOjV8F8yQP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOjV8F8yQP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOjV8F8yQP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOjV8F8yQP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOjV8F8yQP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOjV8F8yQP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOjV8F8yQP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOjV8F8yQP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOjV8F8yQP .dropdown-item.active,
.cid-uOjV8F8yQP .dropdown-item:active {
  background-color: transparent;
}
.cid-uOjV8F8yQP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOjV8F8yQP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOjV8F8yQP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOjV8F8yQP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #094e58;
}
.cid-uOjV8F8yQP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOjV8F8yQP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOjV8F8yQP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOjV8F8yQP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOjV8F8yQP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uOjV8F8yQP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOjV8F8yQP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOjV8F8yQP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjV8F8yQP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOjV8F8yQP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOjV8F8yQP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjV8F8yQP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOjV8F8yQP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOjV8F8yQP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOjV8F8yQP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uOjV8F8yQP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOjV8F8yQP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOjV8F8yQP .navbar {
    height: 70px;
  }
  .cid-uOjV8F8yQP .navbar.opened {
    height: auto;
  }
  .cid-uOjV8F8yQP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOjV8FK2MF {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/yilmazlarnakliyat-2024-1000x568.jpg");
}
.cid-uOjV8FK2MF .mbr-section-title {
  color: #ffffff;
}
.cid-uOjV8FK2MF .mbr-text,
.cid-uOjV8FK2MF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOjV8GeTIW {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOjV8GeTIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjV8GeTIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjV8GeTIW .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjV8GeTIW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjV8GeTIW .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjV8GKsFf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uOjV8GKsFf img,
.cid-uOjV8GKsFf .item-img {
  width: 100%;
}
.cid-uOjV8GKsFf .item:focus,
.cid-uOjV8GKsFf span:focus {
  outline: none;
}
.cid-uOjV8GKsFf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjV8GKsFf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjV8GKsFf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uOjV8GKsFf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjV8GKsFf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uOjV8GKsFf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uOjV8GKsFf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjV8GKsFf .mbr-section-title {
  color: #232323;
}
.cid-uOjV8GKsFf .mbr-text,
.cid-uOjV8GKsFf .mbr-section-btn {
  text-align: left;
}
.cid-uOjV8GKsFf .item-title {
  text-align: left;
}
.cid-uOjV8GKsFf .item-subtitle {
  text-align: center;
}
.cid-uOjV8HmqZ8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #40b0bf;
}
.cid-uOjV8HmqZ8 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uOjV8HmqZ8 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOjV8HCVlL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #fdfdfd;
}
.cid-uOjV8HCVlL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uOjV8HCVlL p {
  color: #767676;
  text-align: left;
}
.cid-uOjV8HCVlL .card-box {
  padding-top: 2rem;
}
.cid-uOjV8HCVlL .card-wrapper {
  height: 100%;
}
.cid-uOjV8HCVlL P {
  text-align: left;
}
.cid-uOjV8HCVlL .card-title {
  text-align: left;
}
.cid-uOjV8I5mqw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOjV8I5mqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjV8I5mqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjV8Iq67B {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjV8Iq67B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjV8Iq67B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjV8Iq67B .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uOjV8Iq67B .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjV8Iq67B .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uOjV8ITb1s {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uOjV8ITb1s .video-wrapper iframe {
  width: 100%;
}
.cid-uOjV8ITb1s .mbr-section-title,
.cid-uOjV8ITb1s .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOjV8ITb1s .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOjV8JiycO {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOjV8JiycO .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uOjV8JiycO form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uOjV8JiycO form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uOjV8JiycO form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOjV8JiycO textarea {
  min-height: 10rem;
}
.cid-uOjV8JiycO .mbr-section-subtitle {
  color: #7a0921;
}
.cid-uOjV8JCcVQ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uOjV8JCcVQ .row {
    flex-direction: column-reverse;
  }
  .cid-uOjV8JCcVQ .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOjV8JCcVQ .google-map {
  height: 100%;
  position: relative;
}
.cid-uOjV8JCcVQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOjV8JCcVQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uOjV8JCcVQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOjV8JCcVQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOjV8JCcVQ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uOjV8JCcVQ .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
.cid-uOjV8JCcVQ .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uOjV8JCcVQ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOjV8JCcVQ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uOjV8JCcVQ .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uOjV8JCcVQ P {
  color: #353535;
}
.cid-uOjV8KuIid {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #2299aa;
}
.cid-uOjV8KuIid .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOjV8KuIid .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOjV8KuIid .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOjV8KuIid .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOjV8KuIid .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOjV8KuIid .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOjV8KuIid .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOjV8KuIid .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOjV8KuIid .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOjV8KuIid .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOjV8KuIid .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOjV8KuIid .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOjV8KuIid .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOjV8KuIid .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOjV8KuIid .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uOjV8KTSDd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOjV8KTSDd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOjV8KTSDd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOjV8KTSDd .number-wrap {
  color: #000000;
  text-align: center;
}
.cid-uOjV8KTSDd .number {
  color: #f10303;
}
.cid-uOjV8KTSDd .period {
  display: block;
}
.cid-uOjV8KTSDd .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uOjV8KTSDd .period {
    font-size: 0.8rem;
  }
}
.cid-uOjV8KTSDd .btn {
  height: 100%;
  margin: 0;
}
.cid-uOjV8KTSDd .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uOjV8KTSDd .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uOjV8KTSDd .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uOjV8KTSDd .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uOjV8KTSDd .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #6592e6;
  color: #ffffff;
}
